Browse Source

Fix alignment

Damian Tarnawski 1 year ago
parent
commit
0df7fe4247
1 changed files with 2 additions and 2 deletions
  1. 2 2
      vendor/wasm/js/runtime.js

+ 2 - 2
vendor/wasm/js/runtime.js

@@ -1547,9 +1547,9 @@ function odinSetupDefaultImports(wasmMemoryInterface, consoleElement) {
 				let id = wasmMemoryInterface.loadString(id_ptr, id_len);
 				let id = wasmMemoryInterface.loadString(id_ptr, id_len);
 				let name = wasmMemoryInterface.loadString(name_ptr, name_len);
 				let name = wasmMemoryInterface.loadString(name_ptr, name_len);
 				let options = {
 				let options = {
-					bubbles:   (options_bits & (1<<0)) !== 0,
+					bubbles:    (options_bits & (1<<0)) !== 0,
 					cancelable: (options_bits & (1<<1)) !== 0,
 					cancelable: (options_bits & (1<<1)) !== 0,
-					composed:  (options_bits & (1<<2)) !== 0,
+					composed:   (options_bits & (1<<2)) !== 0,
 				};
 				};
 
 
 				let element = getElement(id);
 				let element = getElement(id);