Skip to content

Commit 46a8aa3

Browse files
authored
Merge branch 'master' into master
2 parents 6e20d9e + e3e9f44 commit 46a8aa3

File tree

517 files changed

+14786
-13764
lines changed

Some content is hidden

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

517 files changed

+14786
-13764
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,7 @@ sftp-config.json
2121
Thumbs.db
2222

2323

24-
/svgs
24+
*.bak
25+
token.txt
26+
/svgs
27+
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11

22
```js run
3-
function ask(question, yes, no) {
4-
if (confirm(question)) yes();
5-
else no();
3+
function zeptejSe(otázka, ano, ne) {
4+
if (confirm(otázka)) ano();
5+
else ne();
66
}
77

8-
ask(
9-
"Do you agree?",
8+
zeptejSe(
9+
"Souhlasíte?",
1010
*!*
11-
() => alert("You agreed."),
12-
() => alert("You canceled the execution.")
11+
() => alert("Souhlasil jste."),
12+
() => alert("Zrušil jste provádění.")
1313
*/!*
1414
);
1515
```
1616

17-
Looks short and clean, right?
17+
Vypadá to stručně a čistě, že?
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11

2-
# Rewrite with arrow functions
2+
# Přepište na šipkové funkce
33

4-
Replace Function Expressions with arrow functions in the code below:
4+
Přepište funkční výrazy v následujícím kódu na šipkové funkce:
55

66
```js run
7-
function ask(question, yes, no) {
8-
if (confirm(question)) yes();
9-
else no();
7+
function zeptejSe(otázka, ano, ne) {
8+
if (confirm(otázka)) ano();
9+
else ne();
1010
}
1111

12-
ask(
13-
"Do you agree?",
14-
function() { alert("You agreed."); },
15-
function() { alert("You canceled the execution."); }
12+
zeptejSe(
13+
"Souhlasíte?",
14+
function() { alert("Souhlasil jste."); },
15+
function() { alert("Zrušil jste provádění."); }
1616
);
1717
```

0 commit comments

Comments
 (0)