track whether the LHS is collapsed. (shouldn't this be vector specific too?)

This commit is contained in:
Matthew Hodgson 2015-10-11 13:49:44 +01:00
parent c5e3891a5a
commit 8228a7d485

View File

@ -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;
}
},