From 15f7acfc2a87a93814a859de33450d32c6d82cbb Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 1 Nov 2021 23:15:10 +0300 Subject: [PATCH] minor fixes --- 1-js/02-first-steps/01-hello-world/article.md | 2 +- .../03-animate-circle-promise/solution.view/index.html | 2 +- .../07-carousel/solution.view/index.html | 2 +- .../2-hoverintent/solution.view/hoverIntent.js | 2 +- 4-binary/01-arraybuffer-binary-arrays/article.md | 6 +++--- .../3-animate-circle/solution.view/index.html | 2 +- .../3-animate-circle/source.view/index.html | 2 +- .../4-animate-circle-callback/solution.view/index.html | 2 +- .../3-js-animation/1-animate-ball/solution.view/index.html | 2 +- .../2-animate-ball-hops/solution.view/index.html | 2 +- 7-animation/3-js-animation/article.md | 2 +- 7-animation/3-js-animation/bounce-easeinout.view/index.html | 2 +- 7-animation/3-js-animation/bounce-easeout.view/index.html | 2 +- 7-animation/3-js-animation/bounce.view/index.html | 2 +- 7-animation/3-js-animation/text.view/index.html | 2 +- 15 files changed, 17 insertions(+), 17 deletions(-) diff --git a/1-js/02-first-steps/01-hello-world/article.md b/1-js/02-first-steps/01-hello-world/article.md index fa935f34..35f82bf5 100644 --- a/1-js/02-first-steps/01-hello-world/article.md +++ b/1-js/02-first-steps/01-hello-world/article.md @@ -73,7 +73,7 @@ Script files are attached to HTML with the `src` attribute: ``` -Here, `/path/to/script.js` is an absolute path to the script from the site root. One can also provide a relative path from the current page. For instance, `src="script.js"` would mean a file `"script.js"` in the current folder. +Here, `/path/to/script.js` is an absolute path to the script from the site root. One can also provide a relative path from the current page. For instance, `src="script.js"`, just like `src="./script.js"`, would mean a file `"script.js"` in the current folder. We can give a full URL as well. For instance: diff --git a/1-js/11-async/02-promise-basics/03-animate-circle-promise/solution.view/index.html b/1-js/11-async/02-promise-basics/03-animate-circle-promise/solution.view/index.html index 3229daf8..6052f009 100644 --- a/1-js/11-async/02-promise-basics/03-animate-circle-promise/solution.view/index.html +++ b/1-js/11-async/02-promise-basics/03-animate-circle-promise/solution.view/index.html @@ -10,7 +10,7 @@ text-align: center; } .circle { - transition-property: width, height, margin-left, margin-top; + transition-property: width, height; transition-duration: 2s; position: fixed; transform: translateX(-50%) translateY(-50%); diff --git a/2-ui/2-events/01-introduction-browser-events/07-carousel/solution.view/index.html b/2-ui/2-events/01-introduction-browser-events/07-carousel/solution.view/index.html index 2c607331..baf86766 100644 --- a/2-ui/2-events/01-introduction-browser-events/07-carousel/solution.view/index.html +++ b/2-ui/2-events/01-introduction-browser-events/07-carousel/solution.view/index.html @@ -10,7 +10,7 @@