From dfd42bad0b46845ad88d1fdc5fa82b4f03bab0f3 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Thu, 1 Feb 2024 10:00:59 -0500 Subject: Application refactor (#591) * Rename Yomitan class to Application, change initialization style * Rename file * Update init * Update config * Remove dead code --- ext/js/background/background-main.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ext/js/background/background-main.js') 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 . */ -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(); } -- cgit v1.2.3