Merge pull request #2704 from wilburn98/master

Update article.md
This commit is contained in:
Ilya Kantor 2021-10-10 19:55:10 +03:00 committed by GitHub
commit ab2c57c331
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,7 +193,7 @@ In practice, `defer` is used for scripts that need the whole DOM and/or their re
And `async` is used for independent scripts, like counters or ads. And their relative execution order does not matter. And `async` is used for independent scripts, like counters or ads. And their relative execution order does not matter.
```warn header="Page without scripts should be usable" ```warn header="Page without scripts should be usable"
Please note: if you're using `defer` or `async`, then user will see the the page *before* the script loads. Please note: if you're using `defer` or `async`, then user will see the page *before* the script loads.
In such case, some graphical components are probably not initialized yet. In such case, some graphical components are probably not initialized yet.