mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 02:17:57 +01:00
79097d0fe1
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.
11 lines
235 B
JavaScript
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;
|
|
});
|
|
});
|