Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit a419b95

Browse files
Listview: correction in a function I added to make it actually work.
1 parent d97eb33 commit a419b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/jquery.mobile.listview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ $.widget( "mobile.listview", $.mobile.widget, {
6767
$visibleli = create ? $li.not( ".ui-screen-hidden" ) : $li.filter( ":visible" );
6868

6969
// ui-li-last is used for setting border-bottom on the last li
70-
$li.find( ".ui-li-last" ).removeClass( "ui-li-last" );
70+
$li.filter( ".ui-li-last" ).removeClass( "ui-li-last" );
7171

7272
if ( this.options.inset ) {
7373
this._removeCorners( $li );

0 commit comments

Comments
 (0)