From: Michael M Slusarz Date: Thu, 30 Jul 2009 01:36:38 +0000 (-0600) Subject: Take 3 - setTimeout() argument is in milliseconds, not seconds X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0ad1a9e6202e8d852b70891f62d168dc23cf7b2e;p=horde.git Take 3 - setTimeout() argument is in milliseconds, not seconds --- diff --git a/imp/js/src/DimpCore.js b/imp/js/src/DimpCore.js index dd45eb682..fe6ea0032 100644 --- a/imp/js/src/DimpCore.js +++ b/imp/js/src/DimpCore.js @@ -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); } },