mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
6 lines
238 B
JavaScript
Vendored
6 lines
238 B
JavaScript
Vendored
// nav functionality
|
|
function navInit() {
|
|
$(".nav-section-component-mobile-header-toggle").on("click", function() {
|
|
$(".nav-section-component-mobile-header-toggle, .nav-section-component-links").toggleClass("open");
|
|
});
|
|
}
|