new style badges, hr, notices

This commit is contained in:
Matthew Hodgson 2015-07-18 01:21:56 +01:00
parent 4ded74765a
commit 00d2d82a14
6 changed files with 40 additions and 5 deletions

View file

@ -38,7 +38,7 @@ module.exports = React.createClass({
var name = this.props.room.name.replace(":", ":\u200b");
var badge;
if (this.props.highlight) {
badge = <img src="/img/badge.png" width="15" height="15" alt=""/>;
badge = <div className="mx_RoomTile_badge"/>;
}
/*
if (this.props.highlight) {

View file

@ -86,6 +86,10 @@ module.exports = React.createClass({
</div>
</div>
</div>
<div className="mx_RoomView_statusArea">
<div className="mx_RoomView_statusAreaBox">
</div>
</div>
<MessageComposer room={this.state.room} />
</div>
);