1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-20 18:54:15 +01:00

Dev: Fix error in selector for multi-select

This commit is contained in:
Allan Jardine 2019-10-01 13:29:29 +00:00
parent 56af3a08b2
commit c5a908dbd2
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
70ca8a2b245d81f223a8fc4cf68062dfea72b83a
4c3725f9e0850928bc4047e1a4db7110437a318f

View File

@ -38,7 +38,7 @@ $(document).ready(function() {
table.columns().every( function () {
var that = this;
$( 'input clear', this.footer() ).on( 'keyup change', function () {
$( 'input', this.footer() ).on( 'keyup change clear', function () {
if ( that.search() !== this.value ) {
that
.search( this.value )
@ -572,7 +572,7 @@ $(document).ready(function() {
table.columns().every( function () {
var that = this;
$( 'input clear', this.footer() ).on( 'keyup change', function () {
$( 'input', this.footer() ).on( 'keyup change clear', function () {
if ( that.search() !== this.value ) {
that
.search( this.value )