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 scottjehl
parent 18f4d3d5e0
commit b0fb85a38d

View file

@ -300,7 +300,7 @@ define( [ "jquery.mobile.core", "jquery.mobile.forms.select" ], function() {
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,