From 39265a43d969e1201cb5267789967b57835059b1 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Fri, 19 Jan 2024 23:52:48 -0500 Subject: Separate core classes into separate files (#545) --- ext/js/input/hotkey-handler.js | 3 ++- ext/js/input/hotkey-help-controller.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'ext/js/input') diff --git a/ext/js/input/hotkey-handler.js b/ext/js/input/hotkey-handler.js index 6999e4de..3b40a86d 100644 --- a/ext/js/input/hotkey-handler.js +++ b/ext/js/input/hotkey-handler.js @@ -16,7 +16,8 @@ * along with this program. If not, see . */ -import {EventDispatcher, EventListenerCollection} from '../core.js'; +import {EventDispatcher} from '../core/event-dispatcher.js'; +import {EventListenerCollection} from '../core/event-listener-collection.js'; import {DocumentUtil} from '../dom/document-util.js'; import {yomitan} from '../yomitan.js'; diff --git a/ext/js/input/hotkey-help-controller.js b/ext/js/input/hotkey-help-controller.js index 62312298..4c4f56d5 100644 --- a/ext/js/input/hotkey-help-controller.js +++ b/ext/js/input/hotkey-help-controller.js @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -import {isObject} from '../core.js'; +import {isObject} from '../core/utilities.js'; import {parseJson} from '../core/json.js'; import {yomitan} from '../yomitan.js'; import {HotkeyUtil} from './hotkey-util.js'; -- cgit v1.2.3