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