implement latest skin
This commit is contained in:
parent
c0bd574997
commit
9b384e52b5
27 changed files with 172 additions and 71 deletions
|
@ -54,7 +54,7 @@ module.exports = {
|
|||
};
|
||||
}
|
||||
|
||||
MatrixClientPeg.get().sendMessage(this.props.roomId, content).then(function() {
|
||||
MatrixClientPeg.get().sendMessage(this.props.room.roomId, content).then(function() {
|
||||
dis.dispatch({
|
||||
action: 'message_sent'
|
||||
});
|
||||
|
|
|
@ -227,6 +227,10 @@ module.exports = {
|
|||
var mxEv = this.state.room.timeline[i];
|
||||
var TileType = tileTypes[mxEv.getType()];
|
||||
var continuation = false;
|
||||
var last = false;
|
||||
if (i == this.state.room.timeline.length - 1) {
|
||||
last = true;
|
||||
}
|
||||
if (i > 0 &&
|
||||
count < this.state.messageCap - 1 &&
|
||||
this.state.room.timeline[i].sender &&
|
||||
|
@ -238,7 +242,7 @@ module.exports = {
|
|||
}
|
||||
if (!TileType) continue;
|
||||
ret.unshift(
|
||||
<TileType key={mxEv.getId()} mxEvent={mxEv} continuation={continuation}/>
|
||||
<TileType key={mxEv.getId()} mxEvent={mxEv} continuation={continuation} last={last}/>
|
||||
);
|
||||
++count;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue