Created
September 16, 2014 22:06
-
-
Save FelisPhasma/f5312fb67f54c52e53e7 to your computer and use it in GitHub Desktop.
requestAnimationFrame
This file contains 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.requestAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function(callback){ | |
window.setTimeout(callback, 16.6); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment