mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-21 09:51:10 +00:00
[v12.0/forgejo] fix(ui): add missing lazy load attribute to images (#8282)
**Backport:** https://codeberg.org/forgejo/forgejo/pulls/8246 closes #8076 Co-authored-by: Bente Groh <mail@bentegroh.de> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8282 Reviewed-by: Beowulf <beowulf@beocode.eu> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
This commit is contained in:
parent
309ddf6ec7
commit
aa648d74ea
10 changed files with 67 additions and 59 deletions
|
@ -44,6 +44,7 @@ func (g *ASTTransformer) transformImage(ctx *markup.RenderContext, v *ast.Image)
|
|||
for _, attr := range v.Attributes() {
|
||||
image.SetAttribute(attr.Name, attr.Value)
|
||||
}
|
||||
image.SetAttributeString("loading", []byte("lazy"))
|
||||
for child := v.FirstChild(); child != nil; {
|
||||
next := child.NextSibling()
|
||||
image.AppendChild(image, child)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue