Skip to content

Commit

Permalink
codestyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anxolerd committed Aug 19, 2015
1 parent 7c5ffec commit 9a7a50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/static/src/js/hamburger.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var nav = document.getElementById('nav-collapsable');
nav.style.maxHeight = "0px";

var toggle_nav = function() {
function toggle_nav() {
if (nav.style.maxHeight === "0px") {
nav.style.maxHeight = "400px";
} else {
Expand Down

0 comments on commit 9a7a50a

Please sign in to comment.