mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-23 07:34:43 +00:00
select menus only use the overlay style if $.support.scrollTop is true. This makes selectmenus usable on Palm
This commit is contained in:
parent
3ad6166991
commit
2f497bc06e
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ $.fn.customSelect = function(options){
|
|||
var menuHeight = list.outerHeight();
|
||||
currScroll = [ $(window).scrollLeft(), $(window).scrollTop() ];
|
||||
|
||||
if( menuHeight > window.innerHeight - 80 ){
|
||||
if( menuHeight > window.innerHeight - 80 || !$.support.scrollTop ){
|
||||
menuType = "page";
|
||||
menuPageContent.append( list );
|
||||
$.changePage(thisPage, menuPage, "slide", false);
|
||||
|
|
|
|||
Loading…
Reference in a new issue