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

Commit

Permalink
Listview filter: Bind to input event as well. Fixes: #2834.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspermdegroot committed Dec 3, 2012
1 parent 0a08df9 commit a743616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/widgets/listview.filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ $( document ).delegate( "ul, ol", "listviewcreate", function() {
})
.attr( "data-" + $.mobile.ns + "type", "search" )
.jqmData( "lastval", "" )
.bind( "keyup change", function() {
.bind( "keyup change input", function() {

var $this = $( this ),
val = this.value.toLowerCase(),
Expand Down

0 comments on commit a743616

Please sign in to comment.