From b2ff26b579846d735eacb0b3eb7ff57a31dbcff1 Mon Sep 17 00:00:00 2001 From: Bernhard Gschwantner Date: Wed, 20 Apr 2011 15:12:54 +0200 Subject: [PATCH] FIX: Problems with forms in nested listviews --- js/jquery.mobile.listview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.mobile.listview.js b/js/jquery.mobile.listview.js index c39c760d..7f1b3c32 100644 --- a/js/jquery.mobile.listview.js +++ b/js/jquery.mobile.listview.js @@ -187,7 +187,7 @@ $.widget( "mobile.listview", $.mobile.widget, { .prepend( "" + (counter++) + ". " ); } - item.add( item.find( ".ui-btn-inner" ) ).addClass( itemClass ); + item.add( item.find( "div.ui-btn-inner" ) ).addClass( itemClass ); if ( !create ) { self._itemApply( $list, item );