|
From: <tob...@us...> - 2014-07-14 22:21:47
|
Revision: 8548
http://sourceforge.net/p/bigdata/code/8548
Author: tobycraig
Date: 2014-07-14 22:21:43 +0000 (Mon, 14 Jul 2014)
Log Message:
-----------
Fixed status tab links
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-14 20:22:02 UTC (rev 8547)
+++ branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/html/js/workbench.js 2014-07-14 22:21:43 UTC (rev 8548)
@@ -1367,8 +1367,8 @@
function getStatusNumbers(data) {
$('#status-text').html(data);
- $('#status-text a').eq(-2).click(function(e) { e.preventDefault(); showQueries(false); return false; });
- $('#status-text a').eq(-1).click(function(e) { e.preventDefault(); showQueries(true); return false; });
+ $('p:contains(Show queries, query details)').find('a').eq(0).click(function(e) { e.preventDefault(); showQueries(false); });
+ $('p:contains(Show queries, query details)').find('a').eq(1).click(function(e) { e.preventDefault(); showQueries(true); });
}
$('#show-queries').click(function(e) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|