diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2021-11-09 17:27:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 17:27:25 +0800 |
commit | bb71ceeeb24a7d3e768ace8075b7dcc5c13713df (patch) | |
tree | f06b659609893ecafff60a0772b31dbf83d51412 /web_src/js/features/repo-legacy.js | |
parent | 3a693bd18c6274b62aa7bcde69e9a0d86e43c534 (diff) | |
download | gitea-bb71ceeeb24a7d3e768ace8075b7dcc5c13713df.tar.gz gitea-bb71ceeeb24a7d3e768ace8075b7dcc5c13713df.zip |
Improve async/await usage, and sort init calls in `index.js` (#17386)
* clean up async/await, and sort init calls in `index.js
* use `const _promise` to indicate that we do not need await an async function
Diffstat (limited to 'web_src/js/features/repo-legacy.js')
-rw-r--r-- | web_src/js/features/repo-legacy.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web_src/js/features/repo-legacy.js b/web_src/js/features/repo-legacy.js index 6692d1902c..f4a8c0cf3e 100644 --- a/web_src/js/features/repo-legacy.js +++ b/web_src/js/features/repo-legacy.js @@ -259,7 +259,7 @@ export function initRepoCommentForm() { } -export async function initRepository() { +export function initRepository() { if ($('.repository').length === 0) { return; } @@ -363,7 +363,7 @@ export async function initRepository() { if ($editContentZone.html().length === 0) { $editContentZone.html($('#edit-content-form').html()); $textarea = $editContentZone.find('textarea'); - attachTribute($textarea.get(), {mentions: true, emoji: true}); + await attachTribute($textarea.get(), {mentions: true, emoji: true}); let dz; const $dropzone = $editContentZone.find('.dropzone'); |