Skip to content

Commit

Permalink
[skip ci] Fix externs
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel Garcia committed Sep 9, 2016
1 parent 7398cf3 commit 3fe8be8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iron-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -969,12 +969,12 @@
var g = window;
var handle = g.requestIdleCallback ? g.requestIdleCallback(cb) : g.setTimeout(cb, 16);
// Polymer/issues/3895
Polymer.dom.addDebouncer({
Polymer.dom.addDebouncer(/** @type {!Polymer.Debouncer} */({
complete: function() {
g.cancelIdleCallback ? g.cancelIdleCallback(handle) : g.clearTimeout(handle);
cb();
}
});
}));
},

/**
Expand Down

0 comments on commit 3fe8be8

Please sign in to comment.