Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit a743616

Browse files
Listview filter: Bind to input event as well. Fixes: #2834.
1 parent 0a08df9 commit a743616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/widgets/listview.filter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $( document ).delegate( "ul, ol", "listviewcreate", function() {
4444
})
4545
.attr( "data-" + $.mobile.ns + "type", "search" )
4646
.jqmData( "lastval", "" )
47-
.bind( "keyup change", function() {
47+
.bind( "keyup change input", function() {
4848

4949
var $this = $( this ),
5050
val = this.value.toLowerCase(),

0 commit comments

Comments
 (0)