Permalink
Browse files
debounce returns debouncer.
- Loading branch information...
Showing
with
1 addition
and 1 deletion.
-
+1
−1
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