Stability improvements
Removing Debug console auto scroll to restore stability. having it inside utils.mjs sometimes causes 9.xx (9.60 at least) firmwre to show unresponsive browser tab and freeze if any operation was made (launching an app or restarting the console)..
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
CACHE MANIFEST
|
CACHE MANIFEST
|
||||||
# v1
|
# v1
|
||||||
# Generated on 2025-10-14 20:35:14.092483
|
# Generated on 2025-10-21 13:39:57.682007
|
||||||
|
|
||||||
CACHE:
|
CACHE:
|
||||||
index.html
|
index.html
|
||||||
|
|||||||
@@ -29,11 +29,8 @@ export function die(msg = "") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const console = document.getElementById("console");
|
const console = document.getElementById("console");
|
||||||
const debugConsole = document.getElementById("DebugConsole");
|
|
||||||
export function log(msg = "") {
|
export function log(msg = "") {
|
||||||
console.append(`${msg}\n`);
|
console.append(`${msg}\n`);
|
||||||
// scroll console to bottom
|
|
||||||
debugConsole.scrollTop = debugConsole.scrollHeight;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function clear_log() {
|
export function clear_log() {
|
||||||
|
|||||||
Reference in New Issue
Block a user