From 30e3fa723721909ee25115562e676db2452cf8d1 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 20 Oct 2019 09:27:30 +0300 Subject: [PATCH] minor --- 2-ui/5-loading/03-onload-onerror/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/5-loading/03-onload-onerror/article.md b/2-ui/5-loading/03-onload-onerror/article.md index 9490d1dd..e1dcc7c7 100644 --- a/2-ui/5-loading/03-onload-onerror/article.md +++ b/2-ui/5-loading/03-onload-onerror/article.md @@ -74,7 +74,7 @@ Please note that we can't get HTTP error details here. We don't know if it was a ```warn Events `onload`/`onerror` track only the loading itself. -Errors during script processing and execution are out of scope for these events. To track script errors, one can use `window.onerror` global handler. +Errors that may occur during script processing and execution are out of scope for these events. That is: if a script loaded successfully, then `onload` triggers, even if it has programming errors in it. To track script errors, one can use `window.onerror` global handler. ``` ## Other resources