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 92d8e15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iron-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@
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 92d8e15

Please sign in to comment.