Skip to content

Instantly share code, notes, and snippets.

@rikukissa
Created April 8, 2013 22:15
Show Gist options
  • Save rikukissa/5341013 to your computer and use it in GitHub Desktop.
Save rikukissa/5341013 to your computer and use it in GitHub Desktop.
window.requestAnimFrame = ((callback) ->
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
(callback) ->
window.setTimeout callback, 1000 / 60
)()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment