mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 19:14:52 +01:00
Merge branch 'master' into bwindels/upload-images
This commit is contained in:
commit
91f7970d66
@ -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 New Issue
Block a user