mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
7 lines
238 B
JavaScript
7 lines
238 B
JavaScript
|
// 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");
|
||
|
});
|
||
|
}
|