Skip to content

Instantly share code, notes, and snippets.

@Takazudo
Created November 27, 2012 10:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Takazudo/4153444 to your computer and use it in GitHub Desktop.
Save Takazudo/4153444 to your computer and use it in GitHub Desktop.
requestAnimationFrame polyfill
window.requestAnimFrame = do ->
window.requestAnimationFrame or
window.webkitRequestAnimationFrame or
window.mozRequestAnimationFrame or
window.oRequestAnimationFrame or
window.msRequestAnimationFrame or
(callback, element) ->
window.setTimeout callback, 1000 / 60
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment