Skip to content

Debugging in the browser #95

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Aug 2, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
007f06b
1.3.1
otmon76 Jun 28, 2022
a1e7d87
Update chrome-sources-debugger-pause.svg
otmon76 Jun 28, 2022
6467f4a
translate adjustment in svg
danipoma Aug 1, 2022
c4a9474
Adjusted to source formatting
danipoma Aug 1, 2022
02046ae
Adjusted translation for svg
danipoma Aug 1, 2022
27efe3e
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
3675505
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
23ebc5a
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
85f6323
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
b54d1c6
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
1c5d696
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
a24baf9
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
e1a7d85
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
53516b7
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
499ed3d
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
8cc1558
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
f9b9898
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
35483f9
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
2ea3c3e
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
6b617ae
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
8851faf
Update 1-js/03-code-quality/01-debugging-chrome/article.md
otmon76 Aug 2, 2022
e2d8c7b
Merge branch 'master' into 1.3.1
danipoma Aug 2, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
196 changes: 98 additions & 98 deletions 1-js/03-code-quality/01-debugging-chrome/article.md

Large diffs are not rendered by default.

35 changes: 34 additions & 1 deletion 1-js/03-code-quality/01-debugging-chrome/chrome-open-sources.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions 1-js/03-code-quality/01-debugging-chrome/debugging.view/hello.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
function hello(name) {
let phrase = `Hello, ${name}!`;
function ahoj(jméno) {
let věta = `Ahoj, ${jméno}!`;

say(phrase);
řekni(věta);
}

function say(phrase) {
alert(`** ${phrase} **`);
function řekni(věta) {
alert(`** ${věta} **`);
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

<script src="hello.js"></script>

An example for debugging.
Příklad pro ladění.

<script>
hello("John");
ahoj("Jan");
</script>

</body>
Expand Down