Repository: nifi Updated Branches: refs/heads/master 6c46f22b6 -> 6e9175459
NIFI-1363: - Using the appropriate namespace to call the function to detect if the content viewer is configured. Signed-off-by: jpercivall <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/6e917545 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/6e917545 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/6e917545 Branch: refs/heads/master Commit: 6e9175459f31ddbbf8b09b92bc13245861756766 Parents: 6c46f22 Author: Matt Gilman <[email protected]> Authored: Thu Jan 7 16:21:17 2016 -0500 Committer: jpercivall <[email protected]> Committed: Thu Jan 7 17:15:44 2016 -0500 ---------------------------------------------------------------------- .../src/main/webapp/js/nf/provenance/nf-provenance-table.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/6e917545/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-table.js ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-table.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-table.js index 0ea44b2..818a059 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-table.js +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/provenance/nf-provenance-table.js @@ -1292,7 +1292,7 @@ nf.ProvenanceTable = (function () { if (event.inputContentAvailable === true) { $('#input-content-download').show(); - if (isContentViewConfigured()) { + if (nf.Common.isContentViewConfigured()) { $('#input-content-view').show(); } else { $('#input-content-view').hide(); @@ -1336,7 +1336,7 @@ nf.ProvenanceTable = (function () { if (event.inputContentAvailable === true) { $('#input-content-download').show(); - if (isContentViewConfigured()) { + if (nf.Common.isContentViewConfigured()) { $('#input-content-view').show(); } else { $('#input-content-view').hide(); @@ -1349,7 +1349,7 @@ nf.ProvenanceTable = (function () { if (event.outputContentAvailable === true) { $('#output-content-download').show(); - if (isContentViewConfigured()) { + if (nf.Common.isContentViewConfigured()) { $('#output-content-view').show(); } else { $('#output-content-view').hide();
