Skip to content

Commit

Permalink
Select boxes work again in stickyHeaders. See #473.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed Feb 6, 2014
1 parent cfb85fb commit c00f540
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions js/jquery.tablesorter.widgets.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c00f540

Please sign in to comment.