Skip to content

Commit

Permalink
Filter: Fix namespacing of events
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed Jul 2, 2017
1 parent 2668e0e commit 52e8c02
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions js/widgets/widget-filter.js
Expand Up @@ -69,9 +69,10 @@
var tbodyIndex, $tbody,
$table = c.$table,
$tbodies = c.$tbodies,
events = 'addRows updateCell update updateRows updateComplete appendCache filterReset ' +
events = (
'addRows updateCell update updateRows updateComplete appendCache filterReset ' +
'filterAndSortReset filterFomatterUpdate filterEnd search stickyHeadersInit '
.split( ' ' ).join( c.namespace + 'filter ' );
).split( ' ' ).join( c.namespace + 'filter ' );
$table
.removeClass( 'hasFilters' )
// add filter namespace to all BUT search
Expand Down

0 comments on commit 52e8c02

Please sign in to comment.