mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-20 20:31:52 +00:00
didn't need the == true test.
This commit is contained in:
parent
d16c46a6e9
commit
12616b310f
1 changed files with 2 additions and 2 deletions
|
|
@ -51,8 +51,8 @@ $( "[data-role='listview']" ).live( "listviewcreate", function() {
|
|||
.appendTo( wrapper )
|
||||
.textinput();
|
||||
|
||||
if ($(this).data("inset") == true ) {
|
||||
wrapper.addClass("ui-listview-filter-inset");
|
||||
if ($( this ).data( "inset" ) ) {
|
||||
wrapper.addClass( "ui-listview-filter-inset" );
|
||||
}
|
||||
|
||||
wrapper.insertBefore( list );
|
||||
|
|
|
|||
Loading…
Reference in a new issue