From c5a908dbd2b342fc97dc06c007c256b0eac36c83 Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Tue, 1 Oct 2019 13:29:29 +0000 Subject: [PATCH] Dev: Fix error in selector for multi-select --- .datatables-commit-sync | 2 +- examples/api/multi_filter.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.datatables-commit-sync b/.datatables-commit-sync index a79658a3..88631a88 100644 --- a/.datatables-commit-sync +++ b/.datatables-commit-sync @@ -1 +1 @@ -70ca8a2b245d81f223a8fc4cf68062dfea72b83a +4c3725f9e0850928bc4047e1a4db7110437a318f diff --git a/examples/api/multi_filter.html b/examples/api/multi_filter.html index 81e2223e..64de9b4a 100644 --- a/examples/api/multi_filter.html +++ b/examples/api/multi_filter.html @@ -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 )