From 050dcbdf0d2babc63bdc70b0cd2097fbc9d4584a Mon Sep 17 00:00:00 2001 From: Victor Bjelkholm Date: Sun, 11 Aug 2024 04:01:36 +0200 Subject: [PATCH] Remove disabled web examples --- web-src/app.js | 7 +------ web-src/index.html | 2 -- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/web-src/app.js b/web-src/app.js index 05fc03a..7ab14d1 100644 --- a/web-src/app.js +++ b/web-src/app.js @@ -1,7 +1,6 @@ import initMiner from './wasm/examples/miner.js' import initCells from './wasm/examples/cells.js' -import initLemonade from './wasm/examples/resman.js' -import initNeumann from './wasm/examples/von_neumann.js' + import { highlightAll } from './3rd-party/speed-highlight.js' const example = window.location.hash.substr(1) || "cells" @@ -10,10 +9,6 @@ if (example === "miner") { initMiner() } else if (example === "cells") { initCells() -} else if (example === "resman") { - initLemonade() -} else if (example === "von_neumann") { - initNeumann() } else { // impossible?! } diff --git a/web-src/index.html b/web-src/index.html index 5f4846c..3a1463f 100644 --- a/web-src/index.html +++ b/web-src/index.html @@ -10,8 +10,6 @@