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

Commit

Permalink
Listview: correction in a function I added to make it actually work.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspermdegroot committed Jul 14, 2012
1 parent d97eb33 commit a419b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.mobile.listview.js
Expand Up @@ -67,7 +67,7 @@ $.widget( "mobile.listview", $.mobile.widget, {
$visibleli = create ? $li.not( ".ui-screen-hidden" ) : $li.filter( ":visible" );

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

if ( this.options.inset ) {
this._removeCorners( $li );
Expand Down

0 comments on commit a419b95

Please sign in to comment.