forked from mystiq/hydrogen-web
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) {
|
||||
try {
|
||||
let msgtype = "m.text";
|
||||
if (message.startsWith("/me")) {
|
||||
message = message.substr(3).trim();
|
||||
if (message.startsWith("/me ")) {
|
||||
message = message.substr(4).trim();
|
||||
msgtype = "m.emote";
|
||||
}
|
||||
await this._room.sendEvent("m.room.message", {msgtype, body: message});
|
||||
|
|
|
@ -170,3 +170,13 @@ main {
|
|||
position: absolute;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.Settings {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.SettingsBody {
|
||||
min-height: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue