Skip to content

Commit

Permalink
debounce returns debouncer.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Jul 15, 2015
1 parent a230ffb commit fb52120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/micro/debouncer.html
Expand Up @@ -36,7 +36,7 @@
* last signal that must elapse before invoking `callback`
*/
debounce: function(jobName, callback, wait) {
this._debouncers[jobName] = Polymer.Debounce.call(this,
return this._debouncers[jobName] = Polymer.Debounce.call(this,
this._debouncers[jobName], callback, wait);
},

Expand Down

0 comments on commit fb52120

Please sign in to comment.