UNPKG
queen
Version:
dev (0.5.0)
latest (0.6.0)
0.6.0
0.5.1
0.5.0
0.4.0
A platform for running scripts on many browsers
queenjs.com
turn/queen
queen
/
bower_components
/
modernizr
/
feature-detects
/
requestanimationframe.js
7 lines
(5 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
// requestAnimationFrame
// Offload animation repainting to browser for optimized performance.
// http://dvcs.w3.org/hg/webperf/raw-file/tip/specs/RequestAnimationFrame/Overview.html
// By Addy Osmani
Modernizr
.
addTest
(
'raf'
, !!
Modernizr
.
prefixed
(
'requestAnimationFrame'
,
window
));