Skip to content

Commit 77f0671

Browse files
authored
Move Debouncer memberof annotation to right place, and add a summary. (#4690)
1 parent 0e19660 commit 77f0671

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lib/utils/debounce.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
/** @typedef {{run: function(function(), number=):number, cancel: function(number)}} */
1919
let AsyncModule; // eslint-disable-line no-unused-vars
2020

21+
/**
22+
* Collapse multiple callbacks into one invocation after a timer.
23+
*
24+
* @memberof Polymer
25+
*/
2126
class Debouncer {
2227
constructor() {
2328
this._asyncModule = null;
@@ -107,9 +112,6 @@
107112
}
108113
}
109114

110-
/**
111-
* @memberof Polymer
112-
*/
113115
Polymer.Debouncer = Debouncer;
114116
})();
115117
</script>

0 commit comments

Comments
 (0)