Skip to content

Instantly share code, notes, and snippets.

@brainopia
Created March 29, 2012 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brainopia/2244128 to your computer and use it in GitHub Desktop.
Save brainopia/2244128 to your computer and use it in GitHub Desktop.
(function() {
if (window.setImmediate) return;
var timeouts = [];
var messageName = "zero-timeout-message";
// Like setTimeout, but only takes a function argument. There's
// no time argument (always zero) and no arguments (you have to
// use a closure).
function setZeroTimeout(fn) {
timeouts.push(fn);
window.postMessage(messageName, "*");
}
function handleMessage(event) {
if (event.source == window && event.data == messageName) {
event.stopPropagation();
if (timeouts.length > 0) {
var fn = timeouts.shift();
fn();
}
}
}
window.addEventListener("message", handleMessage, true);
// Add the one thing we want added to the window object.
window.setImmediate = setZeroTimeout;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment