Skip to content

Commit 6bc4903

Browse files
committed
Move images PNG to SVG
1 parent fe15292 commit 6bc4903

File tree

757 files changed

+11696
-194
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

757 files changed

+11696
-194
lines changed

1-js/01-getting-started/1-intro/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Examples of such restrictions include:
7575
This limitation is, again, for the user's safety. A page from `http://anysite.com` which a user has opened must not be able to access another browser tab with the URL `http://gmail.com` and steal information from there.
7676
- JavaScript can easily communicate over the net to the server where the current page came from. But its ability to receive data from other sites/domains is crippled. Though possible, it requires explicit agreement (expressed in HTTP headers) from the remote side. Once again, that's a safety limitation.
7777

78-
![](limitations.png)
78+
![](limitations.svg)
7979

8080
Such limits do not exist if JavaScript is used outside of the browser, for example on a server. Modern browsers also allow plugin/extensions which may ask for extended permissions.
8181

-34.8 KB
Binary file not shown.

1-js/01-getting-started/1-intro/limitations.svg

Lines changed: 92 additions & 0 deletions
Loading
Binary file not shown.
Binary file not shown.
Binary file not shown.

1-js/02-first-steps/04-variables/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ We can easily grasp the concept of a "variable" if we imagine it as a "box" for
9999
100100
For instance, the variable `message` can be imagined as a box labeled `"message"` with the value `"Hello!"` in it:
101101
102-
![](variable.png)
102+
![](variable.svg)
103103
104104
We can put any value in the box.
105105
@@ -116,7 +116,7 @@ alert(message);
116116
117117
When the value is changed, the old data is removed from the variable:
118118
119-
![](variable-change.png)
119+
![](variable-change.svg)
120120
121121
We can also declare two variables and copy data from one into the other.
122122
Binary file not shown.
Lines changed: 37 additions & 0 deletions
Loading
Binary file not shown.
-8.15 KB
Binary file not shown.
Lines changed: 26 additions & 0 deletions
Loading
Binary file not shown.
Binary file not shown.
Lines changed: 48 additions & 0 deletions
Loading
Binary file not shown.

1-js/02-first-steps/10-ifelse/2-check-standard/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Using the `if..else` construct, write the code which asks: 'What is the "officia
88

99
If the visitor enters "ECMAScript", then output "Right!", otherwise -- output: "Didn't know? ECMAScript!"
1010

11-
![](ifelse_task2.png)
11+
![](ifelse_task2.svg)
1212

1313
[demo src="ifelse_task2"]
1414

Binary file not shown.

0 commit comments

Comments
 (0)