From 99cbc65d80b41f36e0d17f3396e533bea8830441 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 14 Aug 2019 23:56:32 +0300 Subject: [PATCH] minor --- 1-js/10-error-handling/1-try-catch/article.md | 2 +- .../1-mouse-events-basics/01-selectable-list/task.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/1-js/10-error-handling/1-try-catch/article.md b/1-js/10-error-handling/1-try-catch/article.md index c276982a..fa8ba5e9 100644 --- a/1-js/10-error-handling/1-try-catch/article.md +++ b/1-js/10-error-handling/1-try-catch/article.md @@ -298,7 +298,7 @@ try { *!* alert(e.name); // SyntaxError */!* - alert(e.message); // Unexpected token o in JSON at position 0 + alert(e.message); // Unexpected token o in JSON at position 2 } ``` diff --git a/2-ui/3-event-details/1-mouse-events-basics/01-selectable-list/task.md b/2-ui/3-event-details/1-mouse-events-basics/01-selectable-list/task.md index f358616e..8d29134f 100644 --- a/2-ui/3-event-details/1-mouse-events-basics/01-selectable-list/task.md +++ b/2-ui/3-event-details/1-mouse-events-basics/01-selectable-list/task.md @@ -14,4 +14,5 @@ The demo: [iframe border="1" src="solution" height=180] P.S. For this task we can assume that list items are text-only. No nested tags. + P.P.S. Prevent the native browser selection of the text on clicks.