mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
quick fix to listview image selector to grab the first img of each LI, not the whole list.
This commit is contained in:
parent
c25829a8a2
commit
4fa2032789
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ $.widget( "mobile.listview", $.mobile.widget, {
|
|||
|
||||
item.find( "p, dl" ).addClass( "ui-li-desc" );
|
||||
|
||||
$list.find( "li" ).children( "img:eq(0)" ).addClass( "ui-li-thumb" ).each(function() {
|
||||
$list.find( "li" ).find( ">img:eq(0)" ).addClass( "ui-li-thumb" ).each(function() {
|
||||
$( this ).closest( "li" )
|
||||
.addClass( $(this).is( ".ui-li-icon" ) ? "ui-li-has-icon" : "ui-li-has-thumb" );
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue