diff options
author | Jesstern Rays <jsstrn@users.noreply.github.com> | 2017-12-19 09:31:32 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-12-18 19:31:32 -0600 |
commit | 1123313240e21e863e8ffe6cfc4c24b2986c5a5c (patch) | |
tree | c7ebe6a6d7a1b1d881e460f80fd9b35e860783a0 | |
parent | 7e59587173bc9c5f5964f8b11f48aa950eb6f9cc (diff) | |
download | gitea-1123313240e21e863e8ffe6cfc4c24b2986c5a5c.tar.gz gitea-1123313240e21e863e8ffe6cfc4c24b2986c5a5c.zip |
Use correct camel casing for JavaScript (#3224)
JavaScript should be spelt with an uppercase 'S' as per seen in [Mozilla](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
-rw-r--r-- | templates/base/footer.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base/footer.tmpl b/templates/base/footer.tmpl index 7df892c1ca..0437131835 100644 --- a/templates/base/footer.tmpl +++ b/templates/base/footer.tmpl @@ -22,7 +22,7 @@ {{end}} </div> </div> - <a href="{{AppSubUrl}}/vendor/librejs.html" data-jslicense="1">Javascript licenses</a> + <a href="{{AppSubUrl}}/vendor/librejs.html" data-jslicense="1">JavaScript licenses</a> <a href="{{AppSubUrl}}/api/swagger">API</a> <a target="_blank" rel="noopener" href="https://gitea.io">{{.i18n.Tr "website"}}</a> {{if (or .ShowFooterVersion .PageIsAdmin)}}<span class="version">{{GoVer}}</span>{{end}} |