From c2d5f8e140fb74e70408b19daa22b3e40308a5ba Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Fri, 4 Jun 2021 07:06:50 -0300 Subject: [PATCH] easier to read --- 2-ui/5-loading/01-onload-ondomcontentloaded/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/5-loading/01-onload-ondomcontentloaded/article.md b/2-ui/5-loading/01-onload-ondomcontentloaded/article.md index 377e7703..9cc9fc7c 100644 --- a/2-ui/5-loading/01-onload-ondomcontentloaded/article.md +++ b/2-ui/5-loading/01-onload-ondomcontentloaded/article.md @@ -45,7 +45,7 @@ For instance: ``` -In the example the `DOMContentLoaded` handler runs when the document is loaded, so it can see all the elements, including `` below. +In the example, the `DOMContentLoaded` handler runs when the document is loaded, so it can see all the elements, including `` below. But it doesn't wait for the image to load. So `alert` shows zero sizes.