mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-01 11:24:42 +00:00
Made _refreshCorners private
This commit is contained in:
parent
be3bd42f8a
commit
36e0fb53c7
2 changed files with 3 additions and 3 deletions
|
|
@ -100,7 +100,7 @@ $( ":jqmData(role='listview')" ).live( "listviewcreate", function() {
|
|||
//filtervalue is empty => show all
|
||||
listItems.toggleClass( "ui-screen-hidden", false );
|
||||
}
|
||||
list.listview( "refreshCorners" );
|
||||
listview._refreshCorners();
|
||||
})
|
||||
.appendTo( wrapper )
|
||||
.textinput();
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ $.widget( "mobile.listview", $.mobile.widget, {
|
|||
}
|
||||
},
|
||||
|
||||
refreshCorners: function() {
|
||||
_refreshCorners: function() {
|
||||
var $li,
|
||||
$visibleli,
|
||||
$topli,
|
||||
|
|
@ -200,7 +200,7 @@ $.widget( "mobile.listview", $.mobile.widget, {
|
|||
}
|
||||
}
|
||||
|
||||
this.refreshCorners();
|
||||
this._refreshCorners();
|
||||
},
|
||||
|
||||
//create a string for ID/subpage url creation
|
||||
|
|
|
|||
Loading…
Reference in a new issue