In this days I'm building an experimental version of welcome app based on jQuery 2.0.3 and bootstrap 3 (now rc2). With safari on iPhone4 but also with chrome on galaxy s3 mini, the dropdown in navbar wasn't tapable. I solved partially by using this snippet
jQuery('.dropdown-toggle').click(function(e) { e.preventDefault(); setTimeout(jQuery.proxy(function() { if ('ontouchstart' in document.documentElement) { $(this).siblings('.dropdown-backdrop').off().remove (); } }, this), 0); }); found in https://github.com/twbs/bootstrap/issues/4550#issuecomment-21361314<https://github.com/twbs/bootstrap/issues/4550#issuecomment-21361314> Why partially? because if I change the orientation the menu is not scrollable but maybe the issue is related to something other. Il giorno giovedì 15 agosto 2013 20:04:15 UTC+2, Joe Barnhart ha scritto: > > Well, it's not web2py's fault. But Bootstrap recently did something that > causes their menus to fail on iPhone, and I have verified this behavior. > Basically you can't select any menu choices, leaving you unable to log in. > I don't know if there's a real fix yet... We tried the suggested fix on > the Bootstrap forum without success but we're still working on it... > > Thought everyone should know... > > -- Joe > > P.S. Please, no Android jokes! > -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.