mirror of
https://github.com/danog/sass-site.git
synced 2024-12-02 17:38:26 +01:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
$(function () {
|
|
$('.sl-c-list-navigation-wrapper--collapsible li > ul')
|
|
.parent()
|
|
.children('a')
|
|
.on('click', function () {
|
|
$(this).toggleClass('open');
|
|
return false;
|
|
});
|
|
});
|