mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 18:37:35 +01:00
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
|
// ===========================================================================
|
||
|
// NAVIGATION SLIDE TOGGLE
|
||
|
|
||
|
|
||
|
|
||
|
$(".skip-navigation .icon-button").click(function () {
|
||
|
$(".navigation").slideToggle("slow");
|
||
|
});
|