Nothing real special. The AJAX loading icon can be changed using the Javascript variable ajax_load_icon in header.tpl.
authorDan
Sun, 21 Oct 2007 01:45:00 -0400
changeset 200 63fddf1335d9
parent 199 b21c37981b88
child 201 2303ef648290
Nothing real special. The AJAX loading icon can be changed using the Javascript variable ajax_load_icon in header.tpl.
includes/clientside/static/enano-lib-basic.js
includes/clientside/static/misc.js
--- a/includes/clientside/static/enano-lib-basic.js	Sat Oct 20 22:21:46 2007 -0400
+++ b/includes/clientside/static/enano-lib-basic.js	Sun Oct 21 01:45:00 2007 -0400
@@ -112,6 +112,7 @@
 var startwidth  = false;
 var startheight = false;
 var do_width    = false;
+var ajax_load_icon = scriptPath + '/images/loading.gif';
 
 // You have an NSIS coder in your midst...
 var MB_OK = 1;
--- a/includes/clientside/static/misc.js	Sat Oct 20 22:21:46 2007 -0400
+++ b/includes/clientside/static/misc.js	Sun Oct 21 01:45:00 2007 -0400
@@ -196,7 +196,7 @@
 {
   if ( document.getElementById('ajaxloadicon') )
   {
-    document.getElementById('ajaxloadicon').src=scriptPath + '/images/loading.gif';
+    document.getElementById('ajaxloadicon').src=ajax_load_icon;
   }
 }