MiscUtils.js 541 B

12345678910111213141516
  1. /**
  2. * @author greggman / http://greggman.com/
  3. */
  4. if (!window.requestAnimationFrame) {
  5. window.requestAnimationFrame = (function() {
  6. return window.requestAnimationFrame ||
  7. window.webkitRequestAnimationFrame ||
  8. window.mozRequestAnimationFrame ||
  9. window.oRequestAnimationFrame ||
  10. window.msRequestAnimationFrame ||
  11. function(/* function FrameRequestCallback */ callback, /* DOMElement Element */ element) {
  12. window.setTimeout(callback, 1000/60);
  13. };
  14. })();
  15. };