Skip to content

Instantly share code, notes, and snippets.

@DoomyTheFroomy
Created November 21, 2012 07:07
Show Gist options
  • Save DoomyTheFroomy/4123525 to your computer and use it in GitHub Desktop.
Save DoomyTheFroomy/4123525 to your computer and use it in GitHub Desktop.
Bootstrap Dropdown iPad Temporary Fix
// Bootstrap dropdown fix
$('body')
.on('touchstart.dropdown', '.dropdown-menu', function (e) { e.stopPropagation(); })
.on('touchstart.dropdown', '.dropdown-submenu', function (e) {e.preventDefault();});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment