This commit is contained in:
Will Scullin 2020-06-18 02:34:31 -07:00
parent cf16b9cf55
commit fe2b85f6e3
No known key found for this signature in database
GPG Key ID: 9092A5C0A673416B
3 changed files with 6 additions and 2 deletions

View File

@ -29,6 +29,10 @@
<link rel="stylesheet" type="text/css" href="css/apple2.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.2/css/all.css" />
<script>
window.e = true
</script>
<!-- Disk Index -->
<script type="text/javascript" src="json/disks/index.js"></script>

View File

@ -543,7 +543,7 @@ for (var idx = 0; idx < window.disk_index.length; idx++) {
var file = window.disk_index[idx];
var cat = file.category;
var name = file.name, disk = file.disk;
if (file.e) {
if (file.e && !window.e) {
continue;
}
if (cat != oldcat) {

View File

@ -5,7 +5,7 @@
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack-dev-server",
"index": "scripts/index.pl > json/disks/index.js",
"index": "bin/index > json/disks/index.js",
"lint": "eslint .",
"start": "webpack-dev-server",
"test": "jest"