Skip to content

Commit 72d64be

Browse files
committed
Remove unnecessary window reference.
1 parent fbe8095 commit 72d64be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/browser/DomEvent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ DomEvent.requestAnimationFrame = new function() {
132132
return;
133133
// Installs interval timer that checks all callbacks. This results
134134
// in faster animations than repeatedly installing timout timers.
135-
timer = window.setInterval(function() {
135+
timer = setInterval(function() {
136136
// Checks all installed callbacks for element visibility and
137137
// execute if needed.
138138
for (var i = callbacks.length - 1; i >= 0; i--) {

0 commit comments

Comments
 (0)