mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
track whether the LHS is collapsed. (shouldn't this be vector specific too?)
This commit is contained in:
parent
c5e3891a5a
commit
8228a7d485
@ -38,6 +38,7 @@ module.exports = {
|
||||
getInitialState: function() {
|
||||
var s = {
|
||||
logged_in: !!(MatrixClientPeg.get() && MatrixClientPeg.get().credentials),
|
||||
collapse_lhs: false,
|
||||
ready: false,
|
||||
};
|
||||
if (s.logged_in) {
|
||||
@ -210,6 +211,16 @@ module.exports = {
|
||||
case 'notifier_enabled':
|
||||
this.forceUpdate();
|
||||
break;
|
||||
case 'hide_left_panel':
|
||||
this.setState({
|
||||
collapse_lhs: true,
|
||||
});
|
||||
break;
|
||||
case 'show_left_panel':
|
||||
this.setState({
|
||||
collapse_lhs: false,
|
||||
});
|
||||
break;
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user