mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
e e e
This commit is contained in:
parent
cf16b9cf55
commit
fe2b85f6e3
@ -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>
|
||||
|
||||
|
@ -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) {
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user