Offer to join a room if you're not in it

This commit is contained in:
David Baker 2015-08-20 16:47:25 +01:00
parent 2351ad997c
commit ef027706b9

View file

@ -83,9 +83,17 @@ module.exports = React.createClass({
render: function() {
if (!this.state.room) {
return (
<div />
);
if (this.props.roomId) {
return (
<div>
<button onClick={this.onJoinButtonClicked}>Join Room</button>
</div>
);
} else {
return (
<div />
);
}
}
var myUserId = MatrixClientPeg.get().credentials.userId;