mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-31 14:14:36 -04:00
Remove useless JS operation for relative time tooltips (#20756)
This operation that shifts the content from title to data-content is useless when we can directly render the expected HTML instead. This change does prevent these tooltips from working when the user has JS disabled in their browser, but I think we made it clear by now that JS is required for gitea to work properly. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
parent
74515d3d17
commit
20b3a90450
4 changed files with 4 additions and 12 deletions
|
@ -64,7 +64,7 @@ func testViewRepo(t *testing.T) {
|
|||
}
|
||||
})
|
||||
|
||||
f.commitTime, _ = s.Find("span.time-since").Attr("title")
|
||||
f.commitTime, _ = s.Find("span.time-since").Attr("data-content")
|
||||
items = append(items, f)
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue