mirror of
https://github.com/DataTables/DataTables.git
synced 2025-02-21 19:54:15 +01:00
Dev: Fix error in selector for multi-select
This commit is contained in:
parent
56af3a08b2
commit
c5a908dbd2
@ -1 +1 @@
|
|||||||
70ca8a2b245d81f223a8fc4cf68062dfea72b83a
|
4c3725f9e0850928bc4047e1a4db7110437a318f
|
||||||
|
@ -38,7 +38,7 @@ $(document).ready(function() {
|
|||||||
table.columns().every( function () {
|
table.columns().every( function () {
|
||||||
var that = this;
|
var that = this;
|
||||||
|
|
||||||
$( 'input clear', this.footer() ).on( 'keyup change', function () {
|
$( 'input', this.footer() ).on( 'keyup change clear', function () {
|
||||||
if ( that.search() !== this.value ) {
|
if ( that.search() !== this.value ) {
|
||||||
that
|
that
|
||||||
.search( this.value )
|
.search( this.value )
|
||||||
@ -572,7 +572,7 @@ $(document).ready(function() {
|
|||||||
table.columns().every( function () {
|
table.columns().every( function () {
|
||||||
var that = this;
|
var that = this;
|
||||||
|
|
||||||
$( 'input clear', this.footer() ).on( 'keyup change', function () {
|
$( 'input', this.footer() ).on( 'keyup change clear', function () {
|
||||||
if ( that.search() !== this.value ) {
|
if ( that.search() !== this.value ) {
|
||||||
that
|
that
|
||||||
.search( this.value )
|
.search( this.value )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user