From f37bd3b7bd448cb7b5803d0ddf4a72a7d54aaf4e Mon Sep 17 00:00:00 2001 From: Reimar Date: Fri, 10 Oct 2025 12:13:25 +0200 Subject: [PATCH] change to stop button --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 3524ca6..89feece 100644 --- a/index.js +++ b/index.js @@ -62,7 +62,8 @@ editor.addEventListener("change", (ev) => { runButton.onclick = (ev) => { const code = editor.getValue(); runCode(code, consoleCode); - runButton.textContent = "⚙️ Running..."; + runButton.textContent = "◼ Stop"; + runButton.classList.add("active"); }; function downloadFile(content, mime, extension) {