Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 525c1e21-bd67-4735-ac99-b4b0e5262290/1209406 to your computer and use it in GitHub Desktop.
Save 525c1e21-bd67-4735-ac99-b4b0e5262290/1209406 to your computer and use it in GitHub Desktop.
window.requestAnimationFrame shim
window.requestAnimationFrame ?=
window.mozRequestAnimationFrame or
window.msRequestAnimationFrame or
window.oRequestAnimationFrame or
window.webkitRequestAnimationFrame or
(callback) -> window.setTimeout callback, 1000 / 60
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment