mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-05 13:14:45 +00:00
removed broad rule for rounding corners of thumbnail images in first and last slots of listviews. Now this only happens for inset listviews. Fixes #362
This commit is contained in:
parent
af8b21efc5
commit
a138877864
1 changed files with 0 additions and 3 deletions
|
|
@ -227,8 +227,6 @@ jQuery.widget( "mobile.listview", jQuery.mobile.widget, {
|
|||
}
|
||||
|
||||
if ( pos === 0 ) {
|
||||
item.find( "img" ).addClass( "ui-corner-tl" );
|
||||
|
||||
if ( o.inset ) {
|
||||
itemClass += " ui-corner-top";
|
||||
|
||||
|
|
@ -242,7 +240,6 @@ jQuery.widget( "mobile.listview", jQuery.mobile.widget, {
|
|||
}
|
||||
|
||||
} else if ( pos === li.length - 1 ) {
|
||||
item.find( "img" ).addClass( "ui-corner-bl" );
|
||||
|
||||
if ( o.inset ) {
|
||||
itemClass += " ui-corner-bottom";
|
||||
|
|
|
|||
Loading…
Reference in a new issue