Created
August 14, 2019 08:27
-
-
Save asha23/469604ec05d020795cc6dab0fbc9f4dd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// NAV TOGGLER | |
// ======================================================= | |
$(".navbar-toggle-custom").click(function () { | |
$(this) | |
.children("div") | |
.toggleClass("active"); | |
$(this).toggleClass("active"); | |
}); | |
// DROPDOWN ANIMATE | |
// ======================================================= | |
$('.dropdown-toggle').click(function () { | |
$(this).next('.dropdown-menu').slideToggle(200); | |
}); | |
$('.dropdown-toggle').focusout(function () { | |
$(this).next('.dropdown-menu').slideUp(200); | |
}) | |
// Stop dropdown propagation | |
$('.dropdown-menu a').click(function (e) { | |
e.stopPropagation(); | |
}); | |
// Widow killer | |
// ======================================================= | |
function no_widows(the_class){ | |
$(the_class).each(function(index, value){ | |
let inner_html, output_html; | |
inner_html = $(this).text(); | |
output_html = widont(inner_html); | |
$(this).text(output_html); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment