diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-09-22 14:47:47 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-09-22 14:47:47 -0400 |
commit | 063aacd436da24c2616d68a838959300978afaa5 (patch) | |
tree | e2f08f0371b88cc63bc5b226c632bcdaf9378b62 /templates/ng/base/head.tmpl | |
parent | 196efecaaabca797832e62287732a77f02b6b594 (diff) | |
download | gitea-063aacd436da24c2616d68a838959300978afaa5.tar.gz gitea-063aacd436da24c2616d68a838959300978afaa5.zip |
UI: Use tooltip not alert when copy clone URL
Diffstat (limited to 'templates/ng/base/head.tmpl')
-rw-r--r-- | templates/ng/base/head.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/ng/base/head.tmpl b/templates/ng/base/head.tmpl index efdc965358..f2348c2483 100644 --- a/templates/ng/base/head.tmpl +++ b/templates/ng/base/head.tmpl @@ -1,6 +1,6 @@ <!DOCTYPE html> <html> - <head{{if AppSubUrl}} data-suburl="{{AppSubUrl}}"{{end}}> + <head data-suburl="{{AppSubUrl}}"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <meta name="author" content="Gogs - Go Git Service" /> @@ -23,12 +23,14 @@ <!-- Stylesheet --> <link rel="stylesheet" href="{{AppSubUrl}}/ng/css/ui.css"> <link rel="stylesheet" href="{{AppSubUrl}}/ng/css/gogs.css"> + <link rel="stylesheet" href="{{AppSubUrl}}/ng/css/tipsy.css"> <link rel="stylesheet" href="{{AppSubUrl}}/ng/fonts/octicons.css"> <link rel="stylesheet" href="{{AppSubUrl}}/css/github.min.css"> <!-- JavaScript --> <script src="{{AppSubUrl}}/ng/js/lib/tabs.js"></script> <script src="{{AppSubUrl}}/ng/js/lib/lib.js"></script> + <script src="{{AppSubUrl}}/ng/js/lib/jquery.tipsy.js"></script> <script src="{{AppSubUrl}}/ng/js/gogs.js"></script> <title>{{if .Title}}{{.Title}} - {{end}}{{AppName}}</title> |