Added scripts for nav menu

pull/1/head
Esther 2020-06-20 21:47:43 +01:00
parent d140a749df
commit 6cf9cfedb0
No known key found for this signature in database
GPG Key ID: 162A307C5EBD40EA
2 changed files with 8 additions and 0 deletions

2
public/javascript/jquery-3.5.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long

6
public/javascript/nav.js Normal file
View File

@ -0,0 +1,6 @@
$(document).ready(function () {
$('.ham-button').on('click', function () {
$('.ham').toggleClass('open');
});
});