Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions SUBMISSION.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
}());