mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
Added requestAnimationFrame
To fix the warning " 'webkitRequestAnimationFrame' is vendor-specific. Please use the standard 'requestAnimationFrame' instead. " in more recent versions of Chrome
This commit is contained in:
parent
072e945b32
commit
d3a74283d1
@ -19,7 +19,8 @@ define([
|
|||||||
* http://paulirish.com/2011/requestanimationframe-for-smart-animating/
|
* http://paulirish.com/2011/requestanimationframe-for-smart-animating/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
return window.webkitRequestAnimationFrame ||
|
return window.requestAnimationFrame ||
|
||||||
|
window.webkitRequestAnimationFrame ||
|
||||||
window.mozRequestAnimationFrame ||
|
window.mozRequestAnimationFrame ||
|
||||||
window.oRequestAnimationFrame ||
|
window.oRequestAnimationFrame ||
|
||||||
window.msRequestAnimationFrame ||
|
window.msRequestAnimationFrame ||
|
||||||
|
Loading…
Reference in New Issue
Block a user