-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.resize.js
32 lines (28 loc) · 900 Bytes
/
jquery.resize.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(function(){
var original = {
eventAdd: $.event.add
};
/**
* Override the resize event so that it is only called at the end of a resize rather than
* hundreds of times on the course of a resize user action
*/
$.extend($.event, {
add: function(elem, types, handler) {
var originalHandler = handler,
timeoutID = null;
// only apply to resize
if (types.split('.')[0].toLowerCase() === 'resize') {
// wrap the original handler with a function that manages the delay
handler = function() {
if (timeoutID !== null) {
window.clearTimeout(timeoutID);
}
timeoutID = window.setTimeout(originalHandler, 100);
};
}
// call the original function and pass all the arguments
// formal paramters are directly mapped to the indices of the arguments object in non-strict mode
return original.eventAdd.apply(this, arguments);
}
});
})();