mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-04 01:34:39 +00:00
Fix alignment
This commit is contained in:
4
vendor/wasm/js/runtime.js
vendored
4
vendor/wasm/js/runtime.js
vendored
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user