Merge pull request #124 from KenYN/patch-1

Quick'n'dirty patch to address touchscreen issues

Andrew Cantino 11 years ago
parent
commit
3068d2f81b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      vendor/assets/javascripts/bootstrap.js

+ 3 - 1
vendor/assets/javascripts/bootstrap.js

@@ -2022,4 +2022,6 @@
2022 2022
   })
2023 2023
 
2024 2024
 
2025
-}(window.jQuery);
2025
+}(window.jQuery);
2026
+
2027
+$('body').on('touchstart.dropdown', '.dropdown-menu', function (e) { e.stopPropagation(); });