webassembly: Dispatch micropython-print via document not mp_js_stdout.
This commit is contained in:
parent
2d406f2226
commit
db978d7155
@ -33,10 +33,9 @@ mergeInto(LibraryManager.library, {
|
||||
process.stdout.write(b);
|
||||
} else {
|
||||
var c = String.fromCharCode(getValue(ptr + i, 'i8'));
|
||||
var mp_js_stdout = document.getElementById('mp_js_stdout');
|
||||
var print = new Event('print');
|
||||
print.data = c;
|
||||
mp_js_stdout.dispatchEvent(print);
|
||||
var printEvent = new CustomEvent('micropython-print');
|
||||
printEvent.data = c;
|
||||
document.dispatchEvent(printEvent);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user