make our state explicit

This commit is contained in:
Matthew Hodgson 2015-11-03 14:35:55 +00:00
parent 27cf9cf561
commit 8b9b268ec0

View File

@ -28,6 +28,14 @@ var CallHandler = require("matrix-react-sdk/lib/CallHandler");
var HIDE_CONFERENCE_CHANS = true; var HIDE_CONFERENCE_CHANS = true;
module.exports = { module.exports = {
getInitialState: function() {
return {
activityMap: null,
inviteList: [],
roomList: [],
}
},
componentWillMount: function() { componentWillMount: function() {
var cli = MatrixClientPeg.get(); var cli = MatrixClientPeg.get();
cli.on("Room", this.onRoom); cli.on("Room", this.onRoom);