Open javierev opened 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.
Solved in branch issues-0.2
Now the sidebar is hidden on desktop version!!!!
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.
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.