diff options
author | silverwind <me@silverwind.io> | 2022-08-12 23:03:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-12 17:03:41 -0400 |
commit | 20b3a904504d401cfc192b80440d76d787af94d9 (patch) | |
tree | 76e086bb19c9e6614aa4b872c7ec1f8073da19e3 /integrations | |
parent | 74515d3d17c578ee0083111951188cb159fd049b (diff) | |
download | gitea-20b3a904504d401cfc192b80440d76d787af94d9.tar.gz gitea-20b3a904504d401cfc192b80440d76d787af94d9.zip |
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>
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/repo_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/repo_test.go b/integrations/repo_test.go index 872d3f24d1..c2ac6183f0 100644 --- a/integrations/repo_test.go +++ b/integrations/repo_test.go @@ -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) }) |