Skip to content

Commit

Permalink
Move Debouncer memberof annotation to right place, and add a summary. (
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks authored Jun 17, 2017
1 parent 0e19660 commit 77f0671
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/utils/debounce.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
/** @typedef {{run: function(function(), number=):number, cancel: function(number)}} */
let AsyncModule; // eslint-disable-line no-unused-vars

/**
* Collapse multiple callbacks into one invocation after a timer.
*
* @memberof Polymer
*/
class Debouncer {
constructor() {
this._asyncModule = null;
Expand Down Expand Up @@ -107,9 +112,6 @@
}
}

/**
* @memberof Polymer
*/
Polymer.Debouncer = Debouncer;
})();
</script>

0 comments on commit 77f0671

Please sign in to comment.