mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-03 20:34:42 +00:00
fix for listview blank page, ui widget sets the data using the non namespaced fn. needs further consideration
This commit is contained in:
parent
665e87dd5b
commit
0c59d527c3
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ $.mobile.listview.prototype.options.filter = false;
|
|||
|
||||
$( ":jqmData(role='listview')" ).live( "listviewcreate", function() {
|
||||
var list = $( this ),
|
||||
listview = list.jqmData( "listview" );
|
||||
listview = list.data( "listview" );
|
||||
|
||||
if ( !listview.options.filter ) {
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in a new issue