FIX: Prevent typing "#" when showing "Jump to…"

Closes https://meta.discourse.org/t/the-shortcut-behaves-wrong-in-some-browsers/155531
This commit is contained in:
Jarek Radosz 2020-06-24 00:25:54 +02:00
parent 4c543b4a49
commit 13087cab54
1 changed files with 2 additions and 1 deletions

View File

@ -355,7 +355,8 @@ export default {
this.container.lookup("controller:topic").togglePinnedState();
},
goToPost() {
goToPost(event) {
preventKeyboardEvent(event);
this.appEvents.trigger("topic:keyboard-trigger", { type: "jump" });
},