Takazudo
11/27/2012 - 10:09 AM

requestAnimationFrame polyfill

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