mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
Backport #21016 Fixes an issue where users would not be able to select by pressing the down arrow when using @TAG above a message Bug videos: https://user-images.githubusercontent.com/1255041/188095999-c4ccde18-e53b-4251-8a14-d90c4042d768.mp4
This commit is contained in:
parent
2f0a1eb0d5
commit
fbde31fb1e
1 changed files with 12 additions and 0 deletions
|
@ -90,6 +90,18 @@ export async function createCommentEasyMDE(textarea, easyMDEOptions = {}) {
|
||||||
}
|
}
|
||||||
cm.execCommand('delCharBefore');
|
cm.execCommand('delCharBefore');
|
||||||
},
|
},
|
||||||
|
Up: (cm) => {
|
||||||
|
const tributeContainer = document.querySelector('.tribute-container');
|
||||||
|
if (!tributeContainer || tributeContainer.style.display === 'none') {
|
||||||
|
return cm.execCommand('goLineUp');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Down: (cm) => {
|
||||||
|
const tributeContainer = document.querySelector('.tribute-container');
|
||||||
|
if (!tributeContainer || tributeContainer.style.display === 'none') {
|
||||||
|
return cm.execCommand('goLineDown');
|
||||||
|
}
|
||||||
|
},
|
||||||
});
|
});
|
||||||
attachTribute(inputField, {mentions: true, emoji: true});
|
attachTribute(inputField, {mentions: true, emoji: true});
|
||||||
attachEasyMDEToElements(easyMDE);
|
attachEasyMDEToElements(easyMDE);
|
||||||
|
|
Loading…
Reference in a new issue