Skip to content

Commit d1b346b

Browse files
committed
Move images PNG to SVG
1 parent 6f5cefa commit d1b346b

749 files changed

Lines changed: 11288 additions & 191 deletions

File tree

Some content is hidden

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Ejemplos de tales restricciones incluyen:
7777

7878
- JavaScript puede fácilmente comunicarse a través de la red con el servidor de donde esta página proviene. Pero su capacidad para recibir información de otros sitios y dominios esta bloqueada. Aunque sea posible, esto requiere un acuerdo explícito (expresado en los encabezados HTTP) desde el sitio remoto. Una vez más, esto es una limitación de seguridad.
7979

80-
![](limitations.png)
80+
![](limitations.svg)
8181

8282
Tales limitaciones no existen si JavaScript es usado fuera del navegador, por ejemplo, en un servidor. Los navegadores modernos también permiten complementos y extensiones que pueden preguntar por permisos extendidos.
8383

-34.8 KB
Binary file not shown.

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

Lines changed: 92 additions & 0 deletions
Loading
-85.9 KB
Binary file not shown.
-43.6 KB
Binary file not shown.
-84 KB
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
-18.1 KB
Binary file not shown.
Lines changed: 37 additions & 0 deletions
Loading
-42.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)