Regenerate
This commit is contained in:
parent
1943fe0803
commit
53a1b7a107
@ -9,7 +9,7 @@
|
|||||||
onkeydown = (e) => {
|
onkeydown = (e) => {
|
||||||
|
|
||||||
if (e.key == "ArrowLeft") {
|
if (e.key == "ArrowLeft") {
|
||||||
window.location.href = 'file-paths';
|
window.location.href = 'temporary-files-and-directories';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -5,6 +5,20 @@
|
|||||||
<title>Go by Example: Directories</title>
|
<title>Go by Example: Directories</title>
|
||||||
<link rel=stylesheet href="site.css">
|
<link rel=stylesheet href="site.css">
|
||||||
</head>
|
</head>
|
||||||
|
<script>
|
||||||
|
onkeydown = (e) => {
|
||||||
|
|
||||||
|
if (e.key == "ArrowLeft") {
|
||||||
|
window.location.href = 'file-paths';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (e.key == "ArrowRight") {
|
||||||
|
window.location.href = 'temporary-files-and-directories';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
<body>
|
<body>
|
||||||
<div class="example" id="directories">
|
<div class="example" id="directories">
|
||||||
<h2><a href="./">Go by Example</a>: Directories</h2>
|
<h2><a href="./">Go by Example</a>: Directories</h2>
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
|
|
||||||
if (e.key == "ArrowRight") {
|
if (e.key == "ArrowRight") {
|
||||||
window.location.href = 'command-line-arguments';
|
window.location.href = 'directories';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,20 @@
|
|||||||
<title>Go by Example: Temporary Files and Directories</title>
|
<title>Go by Example: Temporary Files and Directories</title>
|
||||||
<link rel=stylesheet href="site.css">
|
<link rel=stylesheet href="site.css">
|
||||||
</head>
|
</head>
|
||||||
|
<script>
|
||||||
|
onkeydown = (e) => {
|
||||||
|
|
||||||
|
if (e.key == "ArrowLeft") {
|
||||||
|
window.location.href = 'directories';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (e.key == "ArrowRight") {
|
||||||
|
window.location.href = 'command-line-arguments';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
<body>
|
<body>
|
||||||
<div class="example" id="temporary-files-and-directories">
|
<div class="example" id="temporary-files-and-directories">
|
||||||
<h2><a href="./">Go by Example</a>: Temporary Files and Directories</h2>
|
<h2><a href="./">Go by Example</a>: Temporary Files and Directories</h2>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user