« Return to Thread: PEAR installation

Re: PEAR installation

by Oliver Christen :: Rate this Message:

Reply to Author | View in Thread

thats a javascript bug which should have been fixed in version 3.5

in file AjaxPlugins.js

===================================================================
RCS file: /var/lib/cvs/projects/cw3/cartoweb3/htdocs/js/AjaxPlugins.js,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- cartoweb3/htdocs/js/AjaxPlugins.js 2007/07/19 16:56:57 1.11
+++ cartoweb3/htdocs/js/AjaxPlugins.js 2008/07/28 08:24:15 1.12
@@ -126,6 +126,11 @@
 
     clearWaitingMessage: function() {
         xHide($('loadbarDiv'));
+        // force hide after 10, solve non closing waiting msg bug
+        var timeoutFn = function() {
+            xHide($('loadbarDiv'));
+        }
+        setTimeout(timeoutFn, 10);
     },
     
     clearDhtmlDrawings: function() {


>
>
> Oliver Christen ha scritto:
>> the response seems ok
>>
>> when you say the application remains blocked, do you mean the
>> "waiting" message do not disappear ?
>
>
> Yes, true !
>
>
_______________________________________________
Cartoweb-users mailing list
Cartoweb-users@...
http://lists.maptools.org/mailman/listinfo/cartoweb-users

 « Return to Thread: PEAR installation