Merge pull request #995 from him2312/patch-5

Mobile Browser accessibility
This commit is contained in:
Ilya Kantor 2019-05-19 19:29:59 +03:00 committed by GitHub
commit e7d6d4a8db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,7 @@ So DOMContentLoaded definitely happens after such scripts:
```html run
<script>
document.addEventListener("DOMContentLoaded", () => {
console.log("DOM ready!");
alert("DOM ready!");
});
</script>