Merge pull request #264 from droptype/restframework2

Prevent the touchstart event propagation on the dropdown menus in the navbar
This commit is contained in:
Tom Christie 2012-09-17 10:11:23 -07:00
commit e37a1a1db2

View File

@ -118,7 +118,7 @@
if (location.hash) shiftWindow();
window.addEventListener("hashchange", shiftWindow);
$('.dropdown-menu').click(function(event) {
$('.dropdown-menu').on('click touchstart', function(event) {
event.stopPropagation();
});
</script>