Skip to content
Browse files

debounce returns debouncer.

  • Loading branch information...
1 parent a230ffb commit fb521205520f2319d2c3a715027687a6711d1813 @sorvell sorvell committed
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/micro/debouncer.html
View
2 src/micro/debouncer.html
@@ -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);
},

0 comments on commit fb52120

Please sign in to comment.
Something went wrong with that request. Please try again.