Merge pull request #2479 from matrix-org/bwindels/defaultsizeforleftpanel

Redesign: set default size of 350px for left panel
This commit is contained in:
Bruno Windels 2019-01-22 16:24:50 +00:00 committed by GitHub
commit 38fe6775ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -183,10 +183,13 @@ const LoggedInView = React.createClass({
}, },
_loadResizerPreferences() { _loadResizerPreferences() {
const lhsSize = window.localStorage.getItem("mx_lhs_size"); let lhsSize = window.localStorage.getItem("mx_lhs_size");
if (lhsSize !== null) { if (lhsSize !== null) {
this.resizer.forHandleAt(0).resize(parseInt(lhsSize, 10)); lhsSize = parseInt(lhsSize, 10);
} else {
lhsSize = 350;
} }
this.resizer.forHandleAt(0).resize(lhsSize);
}, },
onAccountData: function(event) { onAccountData: function(event) {