diff options
author | Morlinest <Morlinest@users.noreply.github.com> | 2017-08-17 03:31:34 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-08-17 09:31:34 +0800 |
commit | 951fb572a769acc965ec74b7152334e55b26de80 (patch) | |
tree | 38635bec85581c32a5b1e3fb1c0dab083fe110e3 /templates/base/footer.tmpl | |
parent | 722bcefbbf26f4bca74f160295611cc982b364dc (diff) | |
download | gitea-951fb572a769acc965ec74b7152334e55b26de80.tar.gz gitea-951fb572a769acc965ec74b7152334e55b26de80.zip |
Fix and improve dashboard repo UI (#2285)
* Fix and improve dashboard repo UI
* Change order of scripts loading
* Remove "mirror" tab
* Remove single tab panel for "org user"
* Add localization strings
* Create vue component and change event for search
* Add "mirrors" filter
Diffstat (limited to 'templates/base/footer.tmpl')
-rw-r--r-- | templates/base/footer.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/base/footer.tmpl b/templates/base/footer.tmpl index 923f39e85b..a0c14db218 100644 --- a/templates/base/footer.tmpl +++ b/templates/base/footer.tmpl @@ -45,10 +45,6 @@ <script src="{{AppSubUrl}}/js/draw.js"></script> {{end}} -<!-- JavaScript --> -<script src="{{AppSubUrl}}/js/semantic-2.2.1.min.js"></script> -<script src="{{AppSubUrl}}/js/index.js?v={{MD5 AppVer}}"></script> - <!-- Third-party libraries --> {{if .RequireHighlightJS}} <script src="{{AppSubUrl}}/plugins/highlight-9.11.0/highlight.pack.js"></script> @@ -66,5 +62,9 @@ <script src="{{AppSubUrl}}/js/libs/emojify-1.1.0.min.js"></script> <script src="{{AppSubUrl}}/js/libs/clipboard-1.5.9.min.js"></script> <script src="{{AppSubUrl}}/js/libs/vue.min.js"></script> + + <!-- JavaScript --> + <script src="{{AppSubUrl}}/js/semantic-2.2.1.min.js"></script> + <script src="{{AppSubUrl}}/js/index.js?v={{MD5 AppVer}}"></script> </body> </html> |