Alignment/added fix for dropdown

This commit is contained in:
Thomas Blazek
2015-01-19 14:59:14 +01:00
parent 69b7604761
commit 229a44df4e

View File

@@ -62,6 +62,15 @@
</div> </div>
</div> </div>
</div> </div>
<script>
$('.dropdown-toggle').click(function(e) {
e.preventDefault();
setTimeout($.proxy(function() {
if ('ontouchstart' in document.documentElement) {
$(this).siblings('.dropdown-backdrop').off().remove();
}
}, this), 0);
});
</script>
</body> </body>
</html> </html>