Last active
February 8, 2016 14:29
-
-
Save jondaiello/d6056c6281ff5a3ff74e to your computer and use it in GitHub Desktop.
Expanding Menu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function () { | |
// Main Menu reveal on phones | |
$('.menu-link').click(function (e) { | |
e.preventDefault(); | |
$('.global-nav--list').slideToggle('fast'); | |
return false; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment