From 9323cf26b2d91daa996da79b932f0237db81b365 Mon Sep 17 00:00:00 2001 From: Ashutosh Chauhan <39612799+masterashu@users.noreply.github.com> Date: Tue, 26 Nov 2019 19:25:52 +0530 Subject: [PATCH 1/4] Update index.html --- .../2-catch-link-navigation/source.view/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/2-events/04-default-browser-action/2-catch-link-navigation/source.view/index.html b/2-ui/2-events/04-default-browser-action/2-catch-link-navigation/source.view/index.html index b88834c9..f0c93439 100644 --- a/2-ui/2-events/04-default-browser-action/2-catch-link-navigation/source.view/index.html +++ b/2-ui/2-events/04-default-browser-action/2-catch-link-navigation/source.view/index.html @@ -16,7 +16,7 @@
#contents

- How about to read Wikipedia or visit W3.org and learn about modern standards? + How about to read Wikipedia or visit W3.org and learn about modern standards?

From 43559725ce19090704a83dfaa0e469517851d71a Mon Sep 17 00:00:00 2001 From: Ashutosh Chauhan <39612799+masterashu@users.noreply.github.com> Date: Tue, 26 Nov 2019 19:26:28 +0530 Subject: [PATCH 2/4] Update index.html --- .../2-catch-link-navigation/solution.view/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/2-events/04-default-browser-action/2-catch-link-navigation/solution.view/index.html b/2-ui/2-events/04-default-browser-action/2-catch-link-navigation/solution.view/index.html index 90aecd9d..51ac0838 100644 --- a/2-ui/2-events/04-default-browser-action/2-catch-link-navigation/solution.view/index.html +++ b/2-ui/2-events/04-default-browser-action/2-catch-link-navigation/solution.view/index.html @@ -16,7 +16,7 @@
#contents

- How about to read Wikipedia or visit W3.org and learn about modern standards? + How about to read Wikipedia or visit W3.org and learn about modern standards?

From fcf12e4b44f181bf480873f8b3ea0899abddeb2c Mon Sep 17 00:00:00 2001 From: Ashutosh Chauhan <39612799+masterashu@users.noreply.github.com> Date: Tue, 26 Nov 2019 19:27:23 +0530 Subject: [PATCH 3/4] Update solution.md --- .../1-why-return-false-fails/solution.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-ui/2-events/04-default-browser-action/1-why-return-false-fails/solution.md b/2-ui/2-events/04-default-browser-action/1-why-return-false-fails/solution.md index 2862e600..4d175ca0 100644 --- a/2-ui/2-events/04-default-browser-action/1-why-return-false-fails/solution.md +++ b/2-ui/2-events/04-default-browser-action/1-why-return-false-fails/solution.md @@ -20,7 +20,7 @@ The fix is simple: } -w3.org +w3.org ``` Also we can use `event.preventDefault()`, like this: @@ -35,5 +35,5 @@ Also we can use `event.preventDefault()`, like this: */!* -w3.org +w3.org ``` From 6d2b959ec9de705f14c69f6870add3e517822fac Mon Sep 17 00:00:00 2001 From: Ashutosh Chauhan <39612799+masterashu@users.noreply.github.com> Date: Tue, 26 Nov 2019 19:27:47 +0530 Subject: [PATCH 4/4] Update task.md --- .../04-default-browser-action/1-why-return-false-fails/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/2-events/04-default-browser-action/1-why-return-false-fails/task.md b/2-ui/2-events/04-default-browser-action/1-why-return-false-fails/task.md index 8fa4fb29..9a5bb98a 100644 --- a/2-ui/2-events/04-default-browser-action/1-why-return-false-fails/task.md +++ b/2-ui/2-events/04-default-browser-action/1-why-return-false-fails/task.md @@ -14,7 +14,7 @@ Why in the code below `return false` doesn't work at all? } -the browser will go to w3.org +the browser will go to w3.org ``` The browser follows the URL on click, but we don't want it.