Merge branch 'master' into bwindels/upload-images
This commit is contained in:
commit
91f7970d66
2 changed files with 12 additions and 2 deletions
|
@ -148,8 +148,8 @@ export class RoomViewModel extends ViewModel {
|
||||||
if (message) {
|
if (message) {
|
||||||
try {
|
try {
|
||||||
let msgtype = "m.text";
|
let msgtype = "m.text";
|
||||||
if (message.startsWith("/me")) {
|
if (message.startsWith("/me ")) {
|
||||||
message = message.substr(3).trim();
|
message = message.substr(4).trim();
|
||||||
msgtype = "m.emote";
|
msgtype = "m.emote";
|
||||||
}
|
}
|
||||||
await this._room.sendEvent("m.room.message", {msgtype, body: message});
|
await this._room.sendEvent("m.room.message", {msgtype, body: message});
|
||||||
|
|
|
@ -170,3 +170,13 @@ main {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.Settings {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SettingsBody {
|
||||||
|
min-height: 0;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
Reference in a new issue