Merge pull request #10197 from cjsewell/patch-3

Fix lazy load height attribute typo
This commit is contained in:
Loz Calver 2022-01-12 09:24:09 +00:00 committed by GitHub
commit dfa360cc65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ Images that don't have dimensions should not be lazy loaded as that might alter
page after the initial page load.
```ss
<img src="$Logo.URL" width="$Logo.Width" width="$Logo.Height" loading="lazy" alt="Company Logo" />
<img src="$Logo.URL" width="$Logo.Width" height="$Logo.Height" loading="lazy" alt="Company Logo" />
<!-- The size of this image is controlled by a CSS class so it can be lazy loaded -->
<img src="$resourceURL('themes/example/images/footer.png')" class="64x64square" loading="lazy" alt="" />