Substituted wrong semicolon with comma inside a list of variable

declaration
This commit is contained in:
Gabriele Rabbiosi 2011-12-19 22:38:49 +01:00 committed by John Bender
parent 397bf644f6
commit 0a3e09c053

View file

@ -297,7 +297,7 @@
menuWidth = self.list.parent().outerWidth(),
activePage = $( ".ui-page-active" ),
tOverflow = $.support.touchOverflow && $.mobile.touchOverflowEnabled,
tScrollElem = activePage.is( ".ui-native-fixed" ) ? activePage.find( ".ui-content" ) : activePage;
tScrollElem = activePage.is( ".ui-native-fixed" ) ? activePage.find( ".ui-content" ) : activePage,
scrollTop = tOverflow ? tScrollElem.scrollTop() : $( window ).scrollTop(),
btnOffset = self.button.offset().top,
screenHeight = window.innerHeight,