From 1b89b6830647c43a75baa56fd4386982cf67194d Mon Sep 17 00:00:00 2001 From: German Date: Wed, 8 Apr 2026 20:30:14 +0400 Subject: [PATCH] correct bug --- Find/Find.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Find/Find.js b/Find/Find.js index 8460f69..ad50636 100644 --- a/Find/Find.js +++ b/Find/Find.js @@ -50,7 +50,7 @@ class FindObjectMap { this.root.textContent = t; return this; } - html(t) { + html(t) { if (arguments.length == 0) { return this.root.innerHTML; } @@ -86,6 +86,9 @@ class FindObjectMap { }); return this; } + app() { + return this._app; + } } export default class { @@ -356,4 +359,4 @@ class PrivateFind { console.error(ERROR_CODE, "You can't use <" + (typeof obj) + "> as <" + tp + ">!"); } -} \ No newline at end of file +}