From 73236d72f5f99c3a5ec8f0d5233fba6465949a7f Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 17 Jan 2012 14:36:37 +0000 Subject: [PATCH] Note --- js/Utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/Utils.js b/js/Utils.js index 3a6942c3c..0f8754337 100755 --- a/js/Utils.js +++ b/js/Utils.js @@ -289,6 +289,7 @@ utils.stitchElement = function(element,attributes,options) { utils.nextTick = function(fn) { /*global window: false */ if(typeof window !== "undefined") { + // Apparently it would be faster to use postMessage - http://dbaron.org/log/20100309-faster-timeouts window.setTimeout(fn,4); } else { process.nextTick(fn);