Skip to content

Instantly share code, notes, and snippets.

@walf443
Created September 3, 2015 11:38
Show Gist options
  • Save walf443/641b37d280b75e1d0d64 to your computer and use it in GitHub Desktop.
Save walf443/641b37d280b75e1d0d64 to your computer and use it in GitHub Desktop.
run callback only in 200ms
window.requestIdleCallback(function(d) { for (i = 0; i < 1000000; i++) { if ( d.timeRemaining() == 0 ) { return } else { console.log([d.timeRemaining(), d.didTimeout]) } } }, 200)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment