didn't need the == true test.

This commit is contained in:
scottjehl 2011-03-15 00:07:48 -04:00
parent d16c46a6e9
commit 12616b310f

View file

@ -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 );