diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2022-10-14 01:16:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-14 01:16:27 +0800 |
commit | f40833d1f0a9e3269d31090eae8fcb101fa1318c (patch) | |
tree | e63faa2ed92da86e7257b310358c3fe6811d4938 /templates/base | |
parent | 0e58201d1a8247561809d832eb8f576e05e5d26d (diff) | |
download | gitea-f40833d1f0a9e3269d31090eae8fcb101fa1318c.tar.gz gitea-f40833d1f0a9e3269d31090eae8fcb101fa1318c.zip |
Remove useless `appVer` from JS `window.config` (#21445)
The only usage of `appVer` was in serviceworker.js, while indeed it
needs the asset version.
Diffstat (limited to 'templates/base')
-rw-r--r-- | templates/base/head_script.tmpl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/templates/base/head_script.tmpl b/templates/base/head_script.tmpl index 8369b63b35..c4ac18a86e 100644 --- a/templates/base/head_script.tmpl +++ b/templates/base/head_script.tmpl @@ -6,7 +6,6 @@ If you introduce mistakes in it, Gitea JavaScript code wouldn't run correctly. <script> window.addEventListener('error', function(e) {window._globalHandlerErrors=window._globalHandlerErrors||[]; window._globalHandlerErrors.push(e);}); window.config = { - appVer: '{{AppVer}}', appUrl: '{{AppUrl}}', appSubUrl: '{{AppSubUrl}}', assetVersionEncoded: encodeURIComponent('{{AssetVersion}}'), // will be used in URL construction directly |