diff options
author | silverwind <me@silverwind.io> | 2022-05-20 05:04:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-20 05:04:45 +0200 |
commit | ac8bee6aebd69db0c110343a527ae5b7d0ec6092 (patch) | |
tree | 4e03e7fe42de60877eac6713083eced1190984b4 /web_src/js | |
parent | cc7236e852e60e4dc9c4fb5692ac62697ef0e9e3 (diff) | |
download | gitea-ac8bee6aebd69db0c110343a527ae5b7d0ec6092.tar.gz gitea-ac8bee6aebd69db0c110343a527ae5b7d0ec6092.zip |
Remove fomantic progress module (#19760)
Replace it with HTML `<progress>` element. The bar won't go green at
100% anymore but I think it's not something that fits stylistically anyways.
Diffstat (limited to 'web_src/js')
-rw-r--r-- | web_src/js/features/common-global.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/web_src/js/features/common-global.js b/web_src/js/features/common-global.js index 57fd549019..241a357703 100644 --- a/web_src/js/features/common-global.js +++ b/web_src/js/features/common-global.js @@ -116,9 +116,6 @@ export function initGlobalCommon() { fullTextSearch: 'exact' }); $('.ui.checkbox').checkbox(); - $('.ui.progress').progress({ - showActivity: false - }); // init popups $('.tooltip').each((_, el) => { |