sass-site/source/assets/js/components/list-navigation.js
Natalie Weizenbaum 79097d0fe1 Bundle all JS into a single file
Because we weren't doing this yet, we weren't actually loading the
redirect.js JS code at all.

This also gets rid of some unused JS.
2019-05-08 13:01:20 -07:00

11 lines
235 B
JavaScript

$(function() {
$(".sl-c-list-navigation-wrapper--collapsible li > ul")
.parent()
.children("a")
.removeAttr("href")
.click(function() {
$(this).toggleClass("open");
return false;
});
});