Fix var error in fnSetFilteringDelay - just a warning, but good to tidy up

pull/2/head
Allan Jardine 13 years ago
parent 064cc451a0
commit 5db3b46e8e

@ -12,32 +12,34 @@
*/ */
jQuery.fn.dataTableExt.oApi.fnSetFilteringDelay = function ( oSettings, iDelay ) { jQuery.fn.dataTableExt.oApi.fnSetFilteringDelay = function ( oSettings, iDelay ) {
var var _that = this;
_that = this,
iDelay = (typeof iDelay == 'undefined') ? 250 : iDelay;
this.each( function ( i ) { if ( iDelay === undefined ) {
$.fn.dataTableExt.iApiIndex = i; iDelay = 250;
var }
$this = this,
oTimerId = null,
sPreviousSearch = null,
anControl = $( 'input', _that.fnSettings().aanFeatures.f );
anControl.unbind( 'keyup' ).bind( 'keyup', function() { this.each( function ( i ) {
var $$this = $this; $.fn.dataTableExt.iApiIndex = i;
var
$this = this,
oTimerId = null,
sPreviousSearch = null,
anControl = $( 'input', _that.fnSettings().aanFeatures.f );
if (sPreviousSearch === null || sPreviousSearch != anControl.val()) { anControl.unbind( 'keyup' ).bind( 'keyup', function() {
window.clearTimeout(oTimerId); var $$this = $this;
sPreviousSearch = anControl.val();
oTimerId = window.setTimeout(function() {
$.fn.dataTableExt.iApiIndex = i;
_that.fnFilter( anControl.val() );
}, iDelay);
}
});
return this; if (sPreviousSearch === null || sPreviousSearch != anControl.val()) {
} ); window.clearTimeout(oTimerId);
return this; sPreviousSearch = anControl.val();
oTimerId = window.setTimeout(function() {
$.fn.dataTableExt.iApiIndex = i;
_that.fnFilter( anControl.val() );
}, iDelay);
}
});
return this;
} );
return this;
}; };

Loading…
Cancel
Save