diff --git a/core/modules/utils/utils.js b/core/modules/utils/utils.js index 4c9c3e96d..f3167fdfa 100644 --- a/core/modules/utils/utils.js +++ b/core/modules/utils/utils.js @@ -618,7 +618,7 @@ exports.nextTick = function(fn) { /*global window: false */ if(typeof process === "undefined") { // Apparently it would be faster to use postMessage - http://dbaron.org/log/20100309-faster-timeouts - window.setTimeout(fn,4); + window.setTimeout(fn,0); } else { process.nextTick(fn); }