mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-05 03:41:05 +00:00
Fix onerror function in headless mode
Otherwise we don't see any output!
This commit is contained in:
parent
3236bac3f6
commit
bc01d6cd61
@ -489,7 +489,7 @@ impl Project {
|
|||||||
|
|
||||||
if self.headless {
|
if self.headless {
|
||||||
runjs.push_str("
|
runjs.push_str("
|
||||||
function onerror(error) {
|
function onerror(e) {
|
||||||
const errors = document.getElementById('error');
|
const errors = document.getElementById('error');
|
||||||
let content = `exception: ${e.message}\\nstack: ${e.stack}`;
|
let content = `exception: ${e.message}\\nstack: ${e.stack}`;
|
||||||
errors.innerHTML = `<pre>${content}</pre>`;
|
errors.innerHTML = `<pre>${content}</pre>`;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user