File tree Expand file tree Collapse file tree 4 files changed +30
-2
lines changed Expand file tree Collapse file tree 4 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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>
Original file line number Diff line number Diff line change 1414
1515
1616 if (e.key == "ArrowRight") {
17- window.location.href = 'command-line-arguments ';
17+ window.location.href = 'directories ';
1818 }
1919
2020 }
Original file line number Diff line number Diff line change 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>
You can’t perform that action at this time.
0 commit comments