mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Select boxes work again in stickyHeaders. See #473.
This commit is contained in:
parent
cfb85fb41c
commit
c00f540457
@ -708,8 +708,9 @@ ts.filter = {
|
||||
bindSearch: function(table, $el) {
|
||||
table = $(table)[0];
|
||||
var external, wo = table.config.widgetOptions;
|
||||
$el.unbind('keyup search filterReset')
|
||||
.bind('keyup search', function(event, filter) {
|
||||
// include change for select - fixes #473
|
||||
$el.unbind('keyup search change filterReset')
|
||||
.bind('keyup search change', function(event, filter) {
|
||||
var $this = $(this);
|
||||
// emulate what webkit does.... escape clears the filter
|
||||
if (event.which === 27) {
|
||||
|
Loading…
Reference in New Issue
Block a user