javierev / valdaris.com

0 stars 0 forks source link

Sidebar doesn't hide on selecting a section #1

Open javierev opened 9 years ago

javierev commented 9 years ago

In responsive mode, when the user clicks on an option of the list, the information in the main frame in successfully changed, but the sidebar remains visible. The user has to click on the hamburger icon to hide it.

javierev commented 9 years ago

Solved in branch issues-0.2

javierev commented 9 years ago

Now the sidebar is hidden on desktop version!!!!

javierev commented 8 years ago

In the current code show/hide mechanism is just a jQuery click event in init.js:

$("#menu-toggle").click(function(e) {
    e.preventDefault();
    $("#wrapper").toggleClass("toggled");
});

It should be an event in contentsView.js.