ソースを参照

Added throttle() to Utils. Debounce() can now accept a scope as an optional argument.

dev-tmpl
Bryan Miller 5年前
コミット
173a43348e
1個のファイルの変更26行の追加2行の削除
  1. +26
    -2
      app/js/common/Utils.js

+ 26
- 2
app/js/common/Utils.js ファイルの表示

@@ -24,16 +24,40 @@ const utils = {
}
},

debounce:function(func, delay){
debounce:function(func, delay, scope){
var timeout = null;
return function(){
var context = this;
//var context = this;
var context = scope || this;
var args = arguments;
clearTimeout(timeout);
timeout = setTimeout(function(){
func.apply(context, args);
}, delay);
};
},

throttle:function(func, threshold, scope){
threshold || (threshold = 250);
var lst = 0;
var timer;

return function(){
var context = scope || this;
var args = arguments;

var now = Date.now();
if (now < lst + threshold){
clearTimeout(timer);
timer = setTimeout(function(){
lst = now;
func.apply(context, args);
}, threshold);
} else {
lst = now;
func.apply(context, args);
}
};
}
};


読み込み中…
キャンセル
保存