/js/lib/RequestAnimationFrame.js
http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs · JavaScript · 22 lines · 11 code · 7 blank · 4 comment · 1 complexity · a7b319f112f3dc57b9af68ae6f44ae90 MD5 · raw file
- /**
- * Provides requestAnimationFrame in a cross browser way.
- * http://paulirish.com/2011/requestanimationframe-for-smart-animating/
- */
- if ( !window.requestAnimationFrame ) {
- window.requestAnimationFrame = ( function() {
- return window.webkitRequestAnimationFrame ||
- window.mozRequestAnimationFrame ||
- window.oRequestAnimationFrame ||
- window.msRequestAnimationFrame ||
- function( /* function FrameRequestCallback */ callback, /* DOMElement Element */ element ) {
- window.setTimeout( callback, 1000 / 60 );
- };
- } )();
- }