From e2fd89e691b91320c029ee77b72dc55dc683240e Mon Sep 17 00:00:00 2001 From: Leon van Kammen Date: Fri, 24 Jan 2025 17:34:39 +0100 Subject: [PATCH] bugfix: scope fix --- com/isoterminal/feat/boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com/isoterminal/feat/boot.js b/com/isoterminal/feat/boot.js index 53213e9..9432074 100644 --- a/com/isoterminal/feat/boot.js +++ b/com/isoterminal/feat/boot.js @@ -38,7 +38,7 @@ ISOTerminal.prototype.boot.menu = [ key: "1", title: (opts) => `boot ${String(opts.iso || "").replace(/.*\//,'')} Linux ❤️ `, init: function(){ this.bootISO() }, - keyHandler: (ch) => this.send(ch) // send to v86 webworker + keyHandler: function(ch){ this.send(ch) } // send to v86 webworker }, {