File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -1766,6 +1766,11 @@ $(document).ready(function () {
1766
1766
var hasEmoji = document . getElementsByClassName ( 'has-emoji' ) ;
1767
1767
for ( var i = 0 ; i < hasEmoji . length ; i ++ ) {
1768
1768
emojify . run ( hasEmoji [ i ] ) ;
1769
+ for ( var j = 0 ; j < hasEmoji [ i ] . childNodes . length ; j ++ ) {
1770
+ if ( hasEmoji [ i ] . childNodes [ j ] . nodeName === "A" ) {
1771
+ emojify . run ( hasEmoji [ i ] . childNodes [ j ] )
1772
+ }
1773
+ }
1769
1774
}
1770
1775
1771
1776
// Clipboard JS
Original file line number Diff line number Diff line change 9
9
<a class="ui floated right blue tiny button" href="{{EscapePound .SourcePath}}">
10
10
{{.i18n.Tr "repo.diff.browse_source"}}
11
11
</a>
12
- <h3>{{RenderCommitMessage .Commit.Message $.RepoLink $.Repository.ComposeMetas}}{{template "repo/commit_status" .CommitStatus}}</h3>
12
+ <h3 class="has-emoji" >{{RenderCommitMessage .Commit.Message $.RepoLink $.Repository.ComposeMetas}}{{template "repo/commit_status" .CommitStatus}}</h3>
13
13
{{if IsMultilineCommitMessage .Commit.Message}}
14
14
<pre class="commit-body">{{RenderCommitBody .Commit.Message $.RepoLink $.Repository.ComposeMetas}}</pre>
15
15
{{end}}
You can’t perform that action at this time.
0 commit comments