mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-12 00:55:34 +00:00
14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
export function initMarshaller () {
|
|
window.addEventListener('EventOutputChunk', onOutputChunk)
|
|
}
|
|
|
|
function onOutputChunk (evt) {
|
|
const chunk = evt.payload
|
|
|
|
if (window.terminal) {
|
|
if (chunk.executionTrackingId === window.terminal.executionTrackingId) {
|
|
window.terminal.write(chunk.output)
|
|
}
|
|
}
|
|
}
|