aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamian Tarnawski <gthetarnav@gmail.com>2023-11-25 14:23:41 +0100
committerGitHub <noreply@github.com>2023-11-25 14:23:41 +0100
commit0df7fe4247e43dd4441b81e73153c3275ca383c2 (patch)
treef433efeb148556fb673b3a10cb04a675ccdc50bf
parent84a8e174825d48841949a847255668beb5f1c017 (diff)
Fix alignment
-rw-r--r--vendor/wasm/js/runtime.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/wasm/js/runtime.js b/vendor/wasm/js/runtime.js
index e2f2034cf..68636dd31 100644
--- a/vendor/wasm/js/runtime.js
+++ b/vendor/wasm/js/runtime.js
@@ -1547,9 +1547,9 @@ function odinSetupDefaultImports(wasmMemoryInterface, consoleElement) {
let id = wasmMemoryInterface.loadString(id_ptr, id_len);
let name = wasmMemoryInterface.loadString(name_ptr, name_len);
let options = {
- bubbles: (options_bits & (1<<0)) !== 0,
+ bubbles: (options_bits & (1<<0)) !== 0,
cancelable: (options_bits & (1<<1)) !== 0,
- composed: (options_bits & (1<<2)) !== 0,
+ composed: (options_bits & (1<<2)) !== 0,
};
let element = getElement(id);