PluginProbe
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress / 9.1.3
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress v9.1.3
9.1.3 9.1.2 9.1.1 9.1.0 9.0.3 9.0.2 9.0.1 9.0.0 8.5.79 8.5.78 8.5.77 8.5.76 8.5.75 8.5.74 8.5.73 8.5.72 8.5.71 8.5.70 8.5.69 8.5.68 8.5.35 8.5.36 8.5.37 8.5.38 8.5.39 All 222 releases
wpvr / legacy / admin / lib / pannellum / src / js / RequestAnimationFrame.js

RequestAnimationFrame.js in WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress 9.1.3, at legacy/admin/lib/pannellum/src/js/RequestAnimationFrame.js

23 lines 592 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Provides requestAnimationFrame in a cross browser way.
3 * http://paulirish.com/2011/requestanimationframe-for-smart-animating/
4 */
5
6 if ( !window.requestAnimationFrame ) {
7
8 window.requestAnimationFrame = ( function() {
9
10 return window.webkitRequestAnimationFrame ||
11 window.mozRequestAnimationFrame ||
12 window.oRequestAnimationFrame ||
13 window.msRequestAnimationFrame ||
14 function( /* function FrameRequestCallback */ callback, /* DOMElement Element */ element ) {
15
16 window.setTimeout( callback, 1000 / 60 );
17
18 };
19
20 } )();
21
22 }
23