diff options
author | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2016-01-19 14:23:04 +0100 |
---|---|---|
committer | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2016-01-26 17:55:54 +0100 |
commit | b921161666e5abbe3b24e8f68b8e9233aaaa5826 (patch) | |
tree | 22952ca2f57f7adb9b8db98c46f417a49105827a /templates/repo | |
parent | 2cc1ee3fc0573c3b7c895cb8ed16a74d710873bc (diff) | |
download | gitea-b921161666e5abbe3b24e8f68b8e9233aaaa5826.tar.gz gitea-b921161666e5abbe3b24e8f68b8e9233aaaa5826.zip |
Name popup
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/issue/view_content.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index 20baec0ef3..0c1c2690d8 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -321,10 +321,13 @@ <div class="ui floating jump"> {{range .Participants}} <a href="{{.HomeLink}}"> - <img class="ui avatar image" src="{{.AvatarLink}}" data-title={{.FullName}}> + <img class="ui avatar image" src="{{.AvatarLink}}" data-content={{.FullName}}> </a> {{end}} </div> + <script> + $('.participants .ui.avatar.image').popup(); + </script> </div> </div> </div> |