diff --git a/js/jquery.tablesorter.js b/js/jquery.tablesorter.js index 826c0d7e..76af92b1 100644 --- a/js/jquery.tablesorter.js +++ b/js/jquery.tablesorter.js @@ -1030,7 +1030,13 @@ $table .unbind('sortBegin' + c.namespace + ' sortEnd' + c.namespace) .bind('sortBegin' + c.namespace + ' sortEnd' + c.namespace, function(e) { - ts.isProcessing(table, e.type === 'sortBegin'); + clearTimeout(c.processTimer); + ts.isProcessing(table); + if (e.type === 'sortBegin') { + c.processTimer = setTimeout(function(){ + ts.isProcessing(table, true); + }, 500); + } }); }