diff --git a/SUBMISSION.md b/SUBMISSION.md index 9f4df99..eeac844 100644 --- a/SUBMISSION.md +++ b/SUBMISSION.md @@ -2,7 +2,7 @@ Use this md to tell us the bugs you solved and also explain the approach you had while solving them. Make them bulleted like -1. Accessibility - **Something here** -2. Aesthetics - **Something here** -3. Testing - **Something here** -4. Technicality Improvements - **Something here** +1. Accessibility - Changes the Navigation Bar +2. Aesthetics - No Improvement +3. Testing - No Improvement +4. Technicality Improvements - Added Toggle in ajax diff --git a/app.js b/app.js index 9e583f7..f8b0aea 100644 --- a/app.js +++ b/app.js @@ -60,7 +60,7 @@ $(function () { return false; }); - /* When the menu icon is clicked on, we need to toggle a class - * on the body to perform the hiding/showing of our menu. - */ + $(menuIcon).on('click',function(){ + $('.slide-menu').toggle(300); + }); }());