mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Merge pull request #3329 from gabrielschulhof/fix-custom-select-menu-position-in-IE8
Fix custom select menu popup positioning in IE8
This commit is contained in:
commit
aaeacae9e0
1 changed files with 2 additions and 2 deletions
|
|
@ -300,8 +300,8 @@
|
|||
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,
|
||||
screenWidth = window.innerWidth;
|
||||
screenHeight = $(window).height(),
|
||||
screenWidth = $(window).width();
|
||||
|
||||
//add active class to button
|
||||
self.button.addClass( $.mobile.activeBtnClass );
|
||||
|
|
|
|||
Loading…
Reference in a new issue