From fb521205520f2319d2c3a715027687a6711d1813 Mon Sep 17 00:00:00 2001 From: Steven Orvell Date: Wed, 15 Jul 2015 16:31:39 -0700 Subject: [PATCH] debounce returns debouncer. --- src/micro/debouncer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/micro/debouncer.html b/src/micro/debouncer.html index 1d9d662cad..64ee2acd9b 100644 --- a/src/micro/debouncer.html +++ b/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); },