From 14e82d1ddd85c5dba44e522d57fe91414955361a Mon Sep 17 00:00:00 2001 From: Ghost-017 <31908292+Ghost-017@users.noreply.github.com> Date: Sun, 20 Oct 2019 17:52:58 +0800 Subject: [PATCH] minor --- 2-ui/5-loading/02-script-async-defer/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/5-loading/02-script-async-defer/article.md b/2-ui/5-loading/02-script-async-defer/article.md index 6b90a3e4..a0c91fec 100644 --- a/2-ui/5-loading/02-script-async-defer/article.md +++ b/2-ui/5-loading/02-script-async-defer/article.md @@ -7,7 +7,7 @@ When the browser loads HTML and comes across a `` tag, it ca That leads to two important issues: -1. Scripts can't see DOM elements below them, so it can't add handlers etc. +1. Scripts can't see DOM elements below them, so they can't add handlers etc. 2. If there's a bulky script at the top of the page, it "blocks the page". Users can't see the page content till it downloads and runs: ```html run height=100