You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2010/09/15 21:26:27 UTC

svn commit: r997468 - /ofbiz/trunk/framework/images/webapp/images/selectall.js

Author: doogie
Date: Wed Sep 15 19:26:26 2010
New Revision: 997468

URL: http://svn.apache.org/viewvc?rev=997468&view=rev
Log:
Remove errantly commited debug, that always showed the spinner when the
document was loaded.

Modified:
    ofbiz/trunk/framework/images/webapp/images/selectall.js

Modified: ofbiz/trunk/framework/images/webapp/images/selectall.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/selectall.js?rev=997468&r1=997467&r2=997468&view=diff
==============================================================================
--- ofbiz/trunk/framework/images/webapp/images/selectall.js (original)
+++ ofbiz/trunk/framework/images/webapp/images/selectall.js Wed Sep 15 19:26:26 2010
@@ -624,11 +624,3 @@ function waitSpinnerHide() {
 	spinner.style.display = 'none';
     }, 400);
 }
-document.observe('dom:loaded', function() {
-	setTimeout(function() {
-		waitSpinnerShow();
-		setTimeout(function() {
-			waitSpinnerHide();
-		}, 5000);
-	}, 2000);
-});