mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-01 13:40:22 +00:00
Show me the cache
This commit is contained in:
parent
90b0f9ace3
commit
7bee003ad9
1 changed files with 7 additions and 5 deletions
|
|
@ -308,14 +308,16 @@ define( [
|
|||
}
|
||||
|
||||
var self = this,
|
||||
menuHeight = self.list.parent().outerHeight(),
|
||||
menuWidth = self.list.parent().outerWidth(),
|
||||
$window = $( window ),
|
||||
selfListParent = self.list.parent(),
|
||||
menuHeight = selfListParent.outerHeight(),
|
||||
menuWidth = selfListParent.outerWidth(),
|
||||
activePage = $( ".ui-page-active" ),
|
||||
tScrollElem = activePage,
|
||||
scrollTop = $( window ).scrollTop(),
|
||||
scrollTop = $window.scrollTop(),
|
||||
btnOffset = self.button.offset().top,
|
||||
screenHeight = $(window).height(),
|
||||
screenWidth = $(window).width();
|
||||
screenHeight = $window.height(),
|
||||
screenWidth = $window.width();
|
||||
|
||||
//add active class to button
|
||||
self.button.addClass( $.mobile.activeBtnClass );
|
||||
|
|
|
|||
Loading…
Reference in a new issue