cosmetic changes
This commit is contained in:
parent
cb6644e08d
commit
5a615730e9
1 changed files with 40 additions and 40 deletions
|
@ -58,6 +58,37 @@ Ox.cache = function(fn, options) {
|
||||||
return ret;
|
return ret;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*@
|
||||||
|
Ox.debounce <f> Runs a function once it stops being called for a given time frame
|
||||||
|
(fn[, ms][, immediate]) -> <f> Throttled function
|
||||||
|
fn <f> Function to debounce
|
||||||
|
ms <n|250> Interval in milliseconds
|
||||||
|
immediate <b|false> If true, function is called once immediately
|
||||||
|
@*/
|
||||||
|
Ox.debounce = function(fn/*, ms, immediate*/) {
|
||||||
|
var args,
|
||||||
|
immediate = Ox.last(arguments) === true,
|
||||||
|
ms = Ox.isNumber(arguments[1]) ? arguments[1] : 250,
|
||||||
|
timeout;
|
||||||
|
return function() {
|
||||||
|
args = arguments;
|
||||||
|
if (!timeout) {
|
||||||
|
if (immediate) {
|
||||||
|
fn.apply(null, args);
|
||||||
|
args = null;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
clearTimeout(timeout);
|
||||||
|
}
|
||||||
|
timeout = setTimeout(function() {
|
||||||
|
if (args !== null) {
|
||||||
|
fn.apply(null, args);
|
||||||
|
}
|
||||||
|
timeout = null;
|
||||||
|
}, ms);
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
/*@
|
/*@
|
||||||
Ox.identity <f> Returns its first argument
|
Ox.identity <f> Returns its first argument
|
||||||
This can be used as a default iterator
|
This can be used as a default iterator
|
||||||
|
@ -172,37 +203,6 @@ Ox.throttle = function(fn, ms) {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/*@
|
|
||||||
Ox.debounce <f> Runs a function once it stops being called for a given time frame
|
|
||||||
(fn[, ms][, immediate]) -> <f> Throttled function
|
|
||||||
fn <f> Function to debounce
|
|
||||||
ms <n|250> Interval in milliseconds
|
|
||||||
immediate <b|false> If true, function is called once immediately
|
|
||||||
@*/
|
|
||||||
Ox.debounce = function(fn/*, ms, immediate*/) {
|
|
||||||
var args,
|
|
||||||
immediate = Ox.last(arguments) === true,
|
|
||||||
ms = Ox.isNumber(arguments[1]) ? arguments[1] : 250,
|
|
||||||
timeout;
|
|
||||||
return function() {
|
|
||||||
args = arguments;
|
|
||||||
if (!timeout) {
|
|
||||||
if (immediate) {
|
|
||||||
fn.apply(null, args);
|
|
||||||
args = null;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
clearTimeout(timeout);
|
|
||||||
}
|
|
||||||
timeout = setTimeout(function() {
|
|
||||||
if (args !== null) {
|
|
||||||
fn.apply(null, args);
|
|
||||||
}
|
|
||||||
timeout = null;
|
|
||||||
}, ms);
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/*@
|
/*@
|
||||||
Ox.time <f> Returns the time it takes to execute a given function
|
Ox.time <f> Returns the time it takes to execute a given function
|
||||||
(fn) -> <n> Time in milliseconds
|
(fn) -> <n> Time in milliseconds
|
||||||
|
|
Loading…
Reference in a new issue