Merge pull request #918 from odax/patch-1

Update article.md
This commit is contained in:
Ilya Kantor 2019-04-17 08:37:18 +03:00 committed by GitHub
commit 56b954a608
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,7 +84,7 @@ So here we're talking about "regular" scripts, like `<script>...</script>`, or `
External style sheets don't affect DOM, so `DOMContentLoaded` does not wait for them.
But there's a pitfall. Isf we have a script after the style, then that script must wait until the stylesheet loads:
But there's a pitfall. If we have a script after the style, then that script must wait until the stylesheet loads:
```html
<link type="text/css" rel="stylesheet" href="style.css">