mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
FIX: ensures keyboard event is not propagated when using c shortcut (#9441)
This commit is contained in:
parent
ed6b3b82bd
commit
1168d5c70a
@ -283,11 +283,13 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
createTopic() {
|
createTopic(event) {
|
||||||
if (!(this.currentUser && this.currentUser.can_create_topic)) {
|
if (!(this.currentUser && this.currentUser.can_create_topic)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
// If the page has a create-topic button, use it for context sensitive attributes like category
|
// If the page has a create-topic button, use it for context sensitive attributes like category
|
||||||
let $createTopicButton = $("#create-topic");
|
let $createTopicButton = $("#create-topic");
|
||||||
if ($createTopicButton.length) {
|
if ($createTopicButton.length) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user