Skip to content

Commit 53a1b7a

Browse files
committed
Regenerate
1 parent 1943fe0 commit 53a1b7a

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

public/command-line-arguments

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
onkeydown = (e) => {
1010

1111
if (e.key == "ArrowLeft") {
12-
window.location.href = 'file-paths';
12+
window.location.href = 'temporary-files-and-directories';
1313
}
1414

1515

public/directories

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
55
<title>Go by Example: Directories</title>
66
<link rel=stylesheet href="site.css">
77
</head>
8+
<script>
9+
onkeydown = (e) => {
10+
11+
if (e.key == "ArrowLeft") {
12+
window.location.href = 'file-paths';
13+
}
14+
15+
16+
if (e.key == "ArrowRight") {
17+
window.location.href = 'temporary-files-and-directories';
18+
}
19+
20+
}
21+
</script>
822
<body>
923
<div class="example" id="directories">
1024
<h2><a href="./">Go by Example</a>: Directories</h2>

public/file-paths

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
if (e.key == "ArrowRight") {
17-
window.location.href = 'command-line-arguments';
17+
window.location.href = 'directories';
1818
}
1919

2020
}

public/temporary-files-and-directories

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
55
<title>Go by Example: Temporary Files and Directories</title>
66
<link rel=stylesheet href="site.css">
77
</head>
8+
<script>
9+
onkeydown = (e) => {
10+
11+
if (e.key == "ArrowLeft") {
12+
window.location.href = 'directories';
13+
}
14+
15+
16+
if (e.key == "ArrowRight") {
17+
window.location.href = 'command-line-arguments';
18+
}
19+
20+
}
21+
</script>
822
<body>
923
<div class="example" id="temporary-files-and-directories">
1024
<h2><a href="./">Go by Example</a>: Temporary Files and Directories</h2>

0 commit comments

Comments
 (0)