Hi bobski,
I had the same problem and found the relevant part in the coding:
Within the listview plugin:
- $list.find( "li" ).find( ">img:eq(0), >:first>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" );
You can replace this with the A3 coding to avoid performance issues until this is fixed:
- item.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" );
Regards,
scamp