mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
Fix EasyMDE image paste bug during refactoring (#18207)
This commit is contained in:
parent
4f7764561a
commit
70d7475356
2 changed files with 9 additions and 4 deletions
|
@ -458,8 +458,10 @@ export function initRepoPullRequestReview() {
|
||||||
|
|
||||||
const $reviewBox = $('.review-box');
|
const $reviewBox = $('.review-box');
|
||||||
if ($reviewBox.length === 1) {
|
if ($reviewBox.length === 1) {
|
||||||
createCommentEasyMDE($reviewBox.find('textarea'));
|
(async () => {
|
||||||
initCompImagePaste($reviewBox);
|
await createCommentEasyMDE($reviewBox.find('textarea'));
|
||||||
|
initCompImagePaste($reviewBox);
|
||||||
|
})();
|
||||||
}
|
}
|
||||||
|
|
||||||
// The following part is only for diff views
|
// The following part is only for diff views
|
||||||
|
|
|
@ -64,10 +64,13 @@ export function initRepoCommentForm() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
createCommentEasyMDE($('.comment.form textarea:not(.review-textarea)'));
|
(async () => {
|
||||||
|
await createCommentEasyMDE($('.comment.form textarea:not(.review-textarea)'));
|
||||||
|
initCompImagePaste($('.comment.form'));
|
||||||
|
})();
|
||||||
|
|
||||||
initBranchSelector();
|
initBranchSelector();
|
||||||
initCompMarkupContentPreviewTab($('.comment.form'));
|
initCompMarkupContentPreviewTab($('.comment.form'));
|
||||||
initCompImagePaste($('.comment.form'));
|
|
||||||
|
|
||||||
// List submits
|
// List submits
|
||||||
function initListSubmits(selector, outerSelector) {
|
function initListSubmits(selector, outerSelector) {
|
||||||
|
|
Loading…
Reference in a new issue