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

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 @@ 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

-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.

0 commit comments

Comments
 (0)