NIFI-1363: - Using the appropriate namespace to call the function to detect if the content viewer is configured.

Signed-off-by: jpercivall <joepercivall@yahoo.com>
This commit is contained in:
Matt Gilman 2016-01-07 16:21:17 -05:00 committed by jpercivall
parent 6c46f22b62
commit 6e9175459f
1 changed files with 3 additions and 3 deletions

View File

@ -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();