correct bug

This commit is contained in:
German 2026-04-08 20:30:14 +04:00
parent 7ab497f28c
commit 1b89b68306

View File

@ -50,7 +50,7 @@ class FindObjectMap {
this.root.textContent = t; this.root.textContent = t;
return this; return this;
} }
html(t) { html(t) {
if (arguments.length == 0) { if (arguments.length == 0) {
return this.root.innerHTML; return this.root.innerHTML;
} }
@ -86,6 +86,9 @@ class FindObjectMap {
}); });
return this; return this;
} }
app() {
return this._app;
}
} }
export default class { export default class {
@ -356,4 +359,4 @@ class PrivateFind {
console.error(ERROR_CODE, "You can't use <" + (typeof obj) + "> as <" + tp + ">!"); console.error(ERROR_CODE, "You can't use <" + (typeof obj) + "> as <" + tp + ">!");
} }
} }