aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/repo-settings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'web_src/js/features/repo-settings.ts')
-rw-r--r--web_src/js/features/repo-settings.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/web_src/js/features/repo-settings.ts b/web_src/js/features/repo-settings.ts
index b61ef9a153..7e890a43e0 100644
--- a/web_src/js/features/repo-settings.ts
+++ b/web_src/js/features/repo-settings.ts
@@ -3,6 +3,7 @@ import {minimatch} from 'minimatch';
import {createMonaco} from './codeeditor.ts';
import {onInputDebounce, queryElems, toggleElem} from '../utils/dom.ts';
import {POST} from '../modules/fetch.ts';
+import {initAvatarUploaderWithCropper} from './comp/Cropper.ts';
import {initRepoSettingsBranchesDrag} from './repo-settings-branches.ts';
const {appSubUrl, csrfToken} = window.config;
@@ -156,4 +157,6 @@ export function initRepoSettings() {
initRepoSettingsSearchTeamBox();
initRepoSettingsGitHook();
initRepoSettingsBranchesDrag();
+
+ queryElems(document, '.avatar-file-with-cropper', initAvatarUploaderWithCropper);
}