Github user justin-mcdavid-ibm commented on a diff in the pull request:
https://github.com/apache/couchdb-fauxton/pull/883#discussion_r108506622
--- Diff: app/addons/fauxton/navigation/stores.js ---
@@ -94,8 +107,7 @@ Stores.NavBarStore = FauxtonAPI.Store.extend({
},
toggleMenu () {
-
app.utils.localStorageSet(FauxtonAPI.constants.LOCAL_STORAGE.SIDEBAR_MINIMIZED,
- !this.isMinimized());
+ this._isMinimized = !this._isMinimized;
--- End diff --
We made the decision to open the dashboard with main-nav collapsed, and a
clearer trigger for expanding it back out. I don't think preferences need to
be maintained across sessions, especially if the default state is the one
providing more screen real estate.
These decisions came out of user feedback regarding confusion on the
"hamburger" icon;s functionality, and requests for more visual space to work
with.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---