mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-06 20:58:28 +00:00
9 lines
318 B
JavaScript
9 lines
318 B
JavaScript
export function showCanvas() {
|
|
document.getElementById("terminal").style.display='none';
|
|
document.getElementById("frontBuffer").style.display='inline';
|
|
}
|
|
|
|
export function showTerminal() {
|
|
document.getElementById("terminal").style.display='inline';
|
|
document.getElementById("frontBuffer").style.display='none';
|
|
} |