select menus only use the overlay style if $.support.scrollTop is true. This makes selectmenus usable on Palm

This commit is contained in:
scottjehl 2010-10-13 18:36:10 -04:00
parent 3ad6166991
commit 2f497bc06e

View file

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