Skip to content

Commit 70eb95e

Browse files
committed
Move images PNG to SVG
1 parent 3269a27 commit 70eb95e

File tree

749 files changed

+11288
-191
lines changed

Some content is hidden

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

749 files changed

+11288
-191
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
@@ -81,7 +81,7 @@ Eksempler på slike begrensninger inkluderer:
8181

8282
- JavaScript kan med letthet kommunisere med en tjener over nettet hvor den nåværende siden kom fra. Men dets egenskap til å motta data fra andre sider/domener er veldig tungvint, men det er mulig, dette krever eksplisitt tillatelse (uttrykt via HTTP headere) fra den eksterne siden. Igjen, dette er sikkerhetsbegrensning.
8383

84-
![](limitations.png)
84+
![](limitations.svg)
8585

8686
Slike begrensninger eksisterer ikke hvis JavaScript brukes på utsiden av nettleseren, for eksempel på en tjener. Moderne nettlesere tillater også bruk utvidelser som kan spørre om utvidede tillatelser.
8787

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