Skip to content

Instantly share code, notes, and snippets.

@frostney
Last active December 20, 2015 07:09
Show Gist options
  • Save frostney/6091445 to your computer and use it in GitHub Desktop.
Save frostney/6091445 to your computer and use it in GitHub Desktop.
Trying to find a better alternative to setTimeout(fn, 0)
var nextTick = function(fn) {
var id = window.requestAnimationFrame(function() {
fn && fn();
window.cancelAnimationFrame(id);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment