aboutsummaryrefslogtreecommitdiff
path: root/ext/js/background
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2024-02-01 10:00:59 -0500
committerGitHub <noreply@github.com>2024-02-01 15:00:59 +0000
commitdfd42bad0b46845ad88d1fdc5fa82b4f03bab0f3 (patch)
tree04686b943b84b33b8927238be17e4bc0dda7eb62 /ext/js/background
parent2356223942a21d1683ac38eed8e7b9485f453d87 (diff)
Application refactor (#591)
* Rename Yomitan class to Application, change initialization style * Rename file * Update init * Update config * Remove dead code
Diffstat (limited to 'ext/js/background')
-rw-r--r--ext/js/background/background-main.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/js/background/background-main.js b/ext/js/background/background-main.js
index f5871a14..b63b4396 100644
--- a/ext/js/background/background-main.js
+++ b/ext/js/background/background-main.js
@@ -16,14 +16,15 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
-import {yomitan} from '../yomitan.js';
+import {Application} from '../application.js';
import {Backend} from './backend.js';
/** Entry point. */
async function main() {
- yomitan.prepare(true);
+ const application = new Application();
+ application.prepare(true);
- const backend = new Backend(yomitan.webExtension);
+ const backend = new Backend(application.webExtension);
await backend.prepare();
}