|
From: <tob...@us...> - 2014-07-22 00:02:42
|
Revision: 8583
http://sourceforge.net/p/bigdata/code/8583
Author: tobycraig
Date: 2014-07-22 00:02:38 +0000 (Tue, 22 Jul 2014)
Log Message:
-----------
Fixed tab selector shortcuts issue with health tab in standalone mode
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/html/js/workbench.js
Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/html/js/workbench.js
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/html/js/workbench.js 2014-07-21 23:58:38 UTC (rev 8582)
+++ branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/html/js/workbench.js 2014-07-22 00:02:38 UTC (rev 8583)
@@ -1546,6 +1546,8 @@
$.get('/status?health', function(data) {
if(data.deployment == 'HA') {
$('#tab-selector a[data-target=health]').show();
+ } else {
+ $('#tab-selector a[data-target=health]').remove();
}
});
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|