Make room changing work

This commit is contained in:
David Baker 2015-06-12 18:01:38 +01:00
parent 125fa78bc6
commit 0b0e6adce3
2 changed files with 11 additions and 0 deletions

View file

@ -39,6 +39,11 @@ module.exports = React.createClass({
ready: false
});
break;
case 'view_room':
this.setState({
currentRoom: payload.room_id
});
break;
}
},