Created
October 6, 2013 20:46
-
-
Save felipap/6858879 to your computer and use it in GitHub Desktop.
Coffee script version. ;)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.AnimateOnFrameRate = do -> | |
# thanks, Paul Irish | |
window.requestAnimationFrame or | |
window.webkitRequestAnimationFrame or | |
window.mozRequestAnimationFrame or | |
window.oRequestAnimationFrame or | |
window.msRequestAnimationFrame 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