|
From: <tob...@us...> - 2014-03-14 00:44:12
|
Revision: 7963
http://sourceforge.net/p/bigdata/code/7963
Author: tobycraig
Date: 2014-03-14 00:44:09 +0000 (Fri, 14 Mar 2014)
Log Message:
-----------
#827 - Fixed explore error not appearing
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-03-13 23:15:40 UTC (rev 7962)
+++ branches/RDR/bigdata-war/src/html/js/workbench.js 2014-03-14 00:44:09 UTC (rev 7963)
@@ -750,7 +750,9 @@
}
function updateExploreError(jqXHR, textStatus, errorThrown) {
- $('#explore-results').html('Error! ' + textStatus + ' ' + errorThrown);
+ $('#explore-results').hide();
+ $('#explore-no-results').show();
+ $('#explore-no-results').html('Error! ' + textStatus + ' ' + errorThrown);
}
/* Status */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|