summaryrefslogtreecommitdiff
path: root/html/content/js/Utils/debounce.js
diff options
context:
space:
mode:
Diffstat (limited to 'html/content/js/Utils/debounce.js')
-rw-r--r--html/content/js/Utils/debounce.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/html/content/js/Utils/debounce.js b/html/content/js/Utils/debounce.js
new file mode 100644
index 0000000..f81d9a5
--- /dev/null
+++ b/html/content/js/Utils/debounce.js
@@ -0,0 +1,16 @@
+define('debounce', function () {
+ return function (func, wait, immediate) {
+ var timeout;
+ return function () {
+ var context = this, args = arguments;
+ var later = function () {
+ timeout = null;
+ if (!immediate) func.apply(context, args);
+ };
+ var callNow = immediate && !timeout;
+ clearTimeout(timeout);
+ timeout = setTimeout(later, wait);
+ if (callNow) func.apply(context, args);
+ };
+ };
+});