Skip to content

Instantly share code, notes, and snippets.

@IQAndreas
Last active August 29, 2015 13:59
Show Gist options
  • Save IQAndreas/10448374 to your computer and use it in GitHub Desktop.
Save IQAndreas/10448374 to your computer and use it in GitHub Desktop.
Make sure the `requestAnimationFrame()` function exists in one way or another.
window.requestAnimationFrame ||=
window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function() { console.log("WARNING: 'window.requestAnimationFrame()' not available in this browser."); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment