Fix pasting not working #551

This commit is contained in:
Ajay Bura 2022-05-14 08:24:21 +05:30
parent 0b70c7e490
commit 4a715bfd17
2 changed files with 12 additions and 6 deletions

View file

@ -14,7 +14,8 @@ class Navigation extends EventEmitter {
this.isRoomSettings = false;
this.recentRooms = [];
this.isRawModalVisible = false;
this.rawModelStack = [];
window.nav = this;
}
_setSpacePath(roomId) {
@ -47,8 +48,13 @@ class Navigation extends EventEmitter {
}
}
get isRawModalVisible() {
return this.rawModelStack.length > 0;
}
setIsRawModalVisible(visible) {
this.isRawModalVisible = visible;
if (visible) this.rawModelStack.push(true);
else this.rawModelStack.pop();
}
navigate(action) {