mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-22 06:51:21 +02:00
hook up resizer events
This commit is contained in:
parent
39ab3d86bd
commit
01082c8595
@ -135,6 +135,13 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
componentDidMount: function() {
|
componentDidMount: function() {
|
||||||
this.dispatcherRef = dis.register(this.onAction);
|
this.dispatcherRef = dis.register(this.onAction);
|
||||||
|
this.resizer = new Resizer(this.resizeContainer, FixedDistributor, null, FlexSizer);
|
||||||
|
this.resizer.setClassNames({
|
||||||
|
handle: "mx_ResizeHandle",
|
||||||
|
vertical: "mx_ResizeHandle_vertical",
|
||||||
|
reverse: "mx_ResizeHandle_reverse"
|
||||||
|
});
|
||||||
|
this.resizer.attach();
|
||||||
this.mounted = true;
|
this.mounted = true;
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -632,7 +639,7 @@ module.exports = React.createClass({
|
|||||||
const subListComponents = mapProps(subLists);
|
const subListComponents = mapProps(subLists);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_RoomList">
|
<div ref={(d) => this.resizeContainer = d} className="mx_RoomList">
|
||||||
{ subListComponents }
|
{ subListComponents }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user