Skip to content

Commit 9fed94b

Browse files
committed
Move images PNG to SVG
1 parent 03c4ff6 commit 9fed94b

File tree

813 files changed

+12470
-208
lines changed

Some content is hidden

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

813 files changed

+12470
-208
lines changed

Diff for: 1-js/01-getting-started/1-intro/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Exemplele acestor restricții sunt:
7575
Limitarea este din nou pentru siguranța utilizatorului. O pagină de la `http://anysite.com` pe care un utilizator a deschis-o nu trebuie să poată accesa alt tab al browser-ului cu URL-ul `http://gmail.com` și să fure informații de acolo.
7676
- JavaScript poate cu ușurință să comunice pe net către server, de unde a venit pagina curentă. Dar abilitatea sa de a primi date de la alte site-uri/domenii este infirmată. Deși posibil, acesta necesită acord explicit(exprimat prin headere HTTP) din partea serverului de la distanță. Din nou, acestea sunt limitări de securitate.
7777

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

8080
Astfel de limite nu există dacă JavaScript este folosit în afara browser-ului, de exemplu pe un server. Browserele moderne permit de asemenea instalarea plugin-urilor/extensiilor care pot cere extinderea permisiunilor.
8181

Diff for: 1-js/01-getting-started/1-intro/limitations.png

-34.8 KB
Binary file not shown.

Diff for: 1-js/01-getting-started/1-intro/limitations.svg

+92
Loading

Diff for: 1-js/01-getting-started/1-intro/[email protected]

-85.9 KB
Binary file not shown.
-43.6 KB
Binary file not shown.
-84 KB
Binary file not shown.

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

+2-2
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

Diff for: 1-js/02-first-steps/04-variables/variable-change.png

-18.1 KB
Binary file not shown.

Diff for: 1-js/02-first-steps/04-variables/variable-change.svg

+37
Loading

Diff for: 1-js/02-first-steps/04-variables/[email protected]

-42.7 KB
Binary file not shown.

Diff for: 1-js/02-first-steps/04-variables/variable.png

-8.15 KB
Binary file not shown.

Diff for: 1-js/02-first-steps/04-variables/variable.svg

+26
Loading

Diff for: 1-js/02-first-steps/04-variables/[email protected]

-18.8 KB
Binary file not shown.
-22.7 KB
Binary file not shown.
Loading
Binary file not shown.

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

+1-1
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)