Skip to content

Commit 9975ff5

Browse files
committed
Fix global.
1 parent d9659b6 commit 9975ff5

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

d3.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1834,8 +1834,7 @@ d3 = function() {
18341834
d3_timer_sweep();
18351835
};
18361836
function d3_timer_mark() {
1837-
var now = Date.now();
1838-
t1 = d3_timer_queueHead;
1837+
var now = Date.now(), t1 = d3_timer_queueHead;
18391838
while (t1) {
18401839
if (now >= t1.time) t1.flush = t1.callback(now - t1.time);
18411840
t1 = t1.next;

0 commit comments

Comments
 (0)