Last active
August 29, 2015 14:23
-
-
Save developit/2f403a1ecfcd180a6c47 to your computer and use it in GitHub Desktop.
setImmediate multiple implementations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var setImmediate = (function(f, q, p, reg) { | |
q = []; | |
f = document.createElement('iframe'); | |
f.style.cssText = 'position:absolute;top:-999em;left:0;width:1px;height:1px;'; | |
document.body.appendChild(f); | |
function done() { | |
for (var i=0; i<q.length; i++) q[i](); | |
q.length = 0; | |
} | |
p = [ | |
function(fn){ | |
var w = f.contentWindow; | |
w.onmessage = fn; | |
w.postMessage('', '*'); | |
}, | |
function(fn){ | |
var img = new Image(); | |
img.onerror = fn; | |
img.src = ''; | |
}, | |
function(fn){ setTimeout(fn, 0); } | |
]; | |
reg = function pick() { | |
p.forEach(function(o) { | |
try { | |
o(function() { | |
if (reg===pick) reg=o, done(); | |
}); | |
}catch(e){} | |
}); | |
}; | |
return function(fn) { | |
if (q.push(fn)===1) reg(done); | |
}; | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment