From 53f174d5a466f3948c036642c12e55264a85d107 Mon Sep 17 00:00:00 2001 From: carson Date: Mon, 17 Jan 2022 10:49:49 -0700 Subject: [PATCH] add alt attributes to images fixes https://github.com/bigskysoftware/htmx/issues/742 --- www/examples/lazy-load.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/examples/lazy-load.md b/www/examples/lazy-load.md index 806e414c..7c730cfe 100644 --- a/www/examples/lazy-load.md +++ b/www/examples/lazy-load.md @@ -9,7 +9,7 @@ state that looks like this: ```html
- + Result loading...
``` @@ -49,13 +49,13 @@ img { }); onGet("/graph", function(request, params){ - return ""; + return "Tokyo Climate"; }); // templates function lazyTemplate(page) { return `
- + Result loading...
`; }