There was an error while loading. Please reload this page.
1 parent fbe8095 commit 72d64beCopy full SHA for 72d64be
1 file changed
src/browser/DomEvent.js
@@ -132,7 +132,7 @@ DomEvent.requestAnimationFrame = new function() {
132
return;
133
// Installs interval timer that checks all callbacks. This results
134
// in faster animations than repeatedly installing timout timers.
135
- timer = window.setInterval(function() {
+ timer = setInterval(function() {
136
// Checks all installed callbacks for element visibility and
137
// execute if needed.
138
for (var i = callbacks.length - 1; i >= 0; i--) {
0 commit comments