Take 3 - setTimeout() argument is in milliseconds, not seconds
authorMichael M Slusarz <slusarz@curecanti.org>
Thu, 30 Jul 2009 01:36:38 +0000 (19:36 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 30 Jul 2009 01:36:38 +0000 (19:36 -0600)
imp/js/src/DimpCore.js

index dd45eb6..fe6ea00 100644 (file)
@@ -276,7 +276,7 @@ var DimpCore = {
         var ptr = parent.frames.horde_main ? parent : window;
         ptr.location = this.addURLParam(url);
         if (force) {
-            setTimeout(function() { ptr.location.reload() }, 0.3);
+            setTimeout(function() { ptr.location.reload() }, 300);
         }
     },