mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 18:38:12 +01:00
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;
|
||
|
});
|
||
|
});
|