Regenerate

This commit is contained in:
Mark McGranaghan 2019-07-08 19:04:48 -07:00
parent 1943fe0803
commit 53a1b7a107
4 changed files with 30 additions and 2 deletions

View File

@ -9,7 +9,7 @@
onkeydown = (e) => {
if (e.key == "ArrowLeft") {
window.location.href = 'file-paths';
window.location.href = 'temporary-files-and-directories';
}

View File

@ -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>

View File

@ -14,7 +14,7 @@
if (e.key == "ArrowRight") {
window.location.href = 'command-line-arguments';
window.location.href = 'directories';
}
}

View File

@ -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>