Merge remote-tracking branch 'origin/develop' into dbkr/fix_user_links
This commit is contained in:
commit
ba47c5a198
2 changed files with 9 additions and 0 deletions
|
@ -116,6 +116,10 @@ module.exports = React.createClass({
|
||||||
callState: null,
|
callState: null,
|
||||||
guestsCanJoin: false,
|
guestsCanJoin: false,
|
||||||
canPeek: false,
|
canPeek: false,
|
||||||
|
|
||||||
|
// error object, as from the matrix client/server API
|
||||||
|
// If we failed to load information about the room,
|
||||||
|
// store the error here.
|
||||||
roomLoadError: null,
|
roomLoadError: null,
|
||||||
|
|
||||||
// this is true if we are fully scrolled-down, and are looking at
|
// this is true if we are fully scrolled-down, and are looking at
|
||||||
|
|
|
@ -41,6 +41,11 @@ module.exports = React.createClass({
|
||||||
canPreview: React.PropTypes.bool,
|
canPreview: React.PropTypes.bool,
|
||||||
spinner: React.PropTypes.bool,
|
spinner: React.PropTypes.bool,
|
||||||
room: React.PropTypes.object,
|
room: React.PropTypes.object,
|
||||||
|
|
||||||
|
// The alias that was used to access this room, if appropriate
|
||||||
|
// If given, this will be how the room is referred to (eg.
|
||||||
|
// in error messages).
|
||||||
|
roomAlias: React.PropTypes.object,
|
||||||
},
|
},
|
||||||
|
|
||||||
getDefaultProps: function() {
|
getDefaultProps: function() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue