We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e19660 commit 77f0671Copy full SHA for 77f0671
lib/utils/debounce.html
@@ -18,6 +18,11 @@
18
/** @typedef {{run: function(function(), number=):number, cancel: function(number)}} */
19
let AsyncModule; // eslint-disable-line no-unused-vars
20
21
+ /**
22
+ * Collapse multiple callbacks into one invocation after a timer.
23
+ *
24
+ * @memberof Polymer
25
+ */
26
class Debouncer {
27
constructor() {
28
this._asyncModule = null;
@@ -107,9 +112,6 @@
107
112
}
108
113
109
114
110
- /**
111
- * @memberof Polymer
- */
115
Polymer.Debouncer = Debouncer;
116
})();
117
</script>
0 commit comments