From: <tob...@us...> - 2014-04-03 23:39:47
|
Revision: 8042 http://sourceforge.net/p/bigdata/code/8042 Author: tobycraig Date: 2014-04-03 23:39:45 +0000 (Thu, 03 Apr 2014) Log Message: ----------- #873 - Fixed double history entry for SID component clicks Modified Paths: -------------- branches/RDR/bigdata-war/src/html/js/workbench.js Modified: branches/RDR/bigdata-war/src/html/js/workbench.js =================================================================== --- branches/RDR/bigdata-war/src/html/js/workbench.js 2014-04-03 23:05:18 UTC (rev 8041) +++ branches/RDR/bigdata-war/src/html/js/workbench.js 2014-04-03 23:39:45 UTC (rev 8042) @@ -638,10 +638,6 @@ var match = uri.match(re); if(match) { $('#explore-header').html('<h1><< <<a href="' + buildExploreHash(match[1]) + '">' + match[1] + '</a>><br><<a href="' + buildExploreHash(match[2]) + '">' + match[2] + '</a> ><br><<a href="' + buildExploreHash(match[3]) + '">' + match[3] + '</a> > >></h1>'); - $('#explore-header h1 a').click(function(e) { - e.preventDefault(); - explore(this.text); - }); } else { $('#explore-header').html('<h1>' + uri + '</h1>'); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |