From bce6ab9e5e7c99b9b65f8c9102f8840492fcafac Mon Sep 17 00:00:00 2001 From: "c.rxxp.y" Date: Mon, 4 Nov 2024 20:36:12 -0500 Subject: [PATCH] Update simulation.js --- js/simulation.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/js/simulation.js b/js/simulation.js index 514fe89b..46d2ce1f 100644 --- a/js/simulation.js +++ b/js/simulation.js @@ -2157,17 +2157,6 @@ const simulation = { }); document.getElementById("construct").innerHTML = outHTML }, - techZoom() { - if (tech.isSniperZoom) { - document.body.addEventListener("wheel", (e) => { - if (e.deltaY > 0) { - simulation.setZoom(simulation.zoomScale / 0.9) - } else { - simulation.setZoom(simulation.zoomScale * 0.9) - } - }); - } - } // copyToClipBoard(value) { // // Create a fake textarea // const textAreaEle = document.createElement('textarea');