mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-29 12:10:26 +00:00
inset listviews with a single item will get appropriate visual treatment. Fixes #469
This commit is contained in:
parent
eb2845d1dc
commit
da1c615c8a
1 changed files with 2 additions and 1 deletions
|
|
@ -251,7 +251,8 @@ $.widget( "mobile.listview", $.mobile.widget, {
|
|||
self._removeCorners( item.next() );
|
||||
}
|
||||
|
||||
} else if ( pos === li.length - 1 ) {
|
||||
}
|
||||
if ( pos === li.length - 1 ) {
|
||||
itemClass += " ui-corner-bottom";
|
||||
|
||||
item
|
||||
|
|
|
|||
Loading…
Reference in a new issue