Show me the cache

This commit is contained in:
Eddie Monge 2012-01-17 16:03:38 -08:00
parent 90b0f9ace3
commit 7bee003ad9

View file

@ -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 );