You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
467 B
10 lines
467 B
import env from '../core/env.js'; |
|
var requestAnimationFrame; |
|
requestAnimationFrame = (env.hasGlobalWindow |
|
&& ((window.requestAnimationFrame && window.requestAnimationFrame.bind(window)) |
|
|| (window.msRequestAnimationFrame && window.msRequestAnimationFrame.bind(window)) |
|
|| window.mozRequestAnimationFrame |
|
|| window.webkitRequestAnimationFrame)) || function (func) { |
|
return setTimeout(func, 16); |
|
}; |
|
export default requestAnimationFrame;
|
|
|