This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Bootstrap nav menu hack | |
*/ | |
$(window).on('load', function () { | |
// On page load | |
if ($(window).width() < 768) { | |
$('.navbar-nav > li > .dropdown-toggle').removeAttr('data-hover').attr('data-toggle', 'dropdown'); | |
} | |
// On window resize |