diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-01-19 23:52:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-20 04:52:48 +0000 |
commit | 39265a43d969e1201cb5267789967b57835059b1 (patch) | |
tree | e6ff82234037b16782b85d77901b29bbe12137fd /ext/js/app | |
parent | ffddc74f3d05061fc1e84d149ce678d116cedc4c (diff) |
Separate core classes into separate files (#545)
Diffstat (limited to 'ext/js/app')
-rw-r--r-- | ext/js/app/content-script-main.js | 2 | ||||
-rw-r--r-- | ext/js/app/frontend.js | 4 | ||||
-rw-r--r-- | ext/js/app/popup-factory.js | 2 | ||||
-rw-r--r-- | ext/js/app/popup-proxy.js | 3 | ||||
-rw-r--r-- | ext/js/app/popup-window.js | 2 | ||||
-rw-r--r-- | ext/js/app/popup.js | 5 |
6 files changed, 12 insertions, 6 deletions
diff --git a/ext/js/app/content-script-main.js b/ext/js/app/content-script-main.js index e640dc3c..c0bea73c 100644 --- a/ext/js/app/content-script-main.js +++ b/ext/js/app/content-script-main.js @@ -16,7 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import {log} from '../core.js'; +import {log} from '../core/logger.js'; import {HotkeyHandler} from '../input/hotkey-handler.js'; import {yomitan} from '../yomitan.js'; import {Frontend} from './frontend.js'; diff --git a/ext/js/app/frontend.js b/ext/js/app/frontend.js index 8ac3acc3..13d2d9d8 100644 --- a/ext/js/app/frontend.js +++ b/ext/js/app/frontend.js @@ -16,8 +16,10 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import {EventListenerCollection, log, promiseAnimationFrame} from '../core.js'; import {createApiMap, invokeApiMapHandler} from '../core/api-map.js'; +import {EventListenerCollection} from '../core/event-listener-collection.js'; +import {log} from '../core/logger.js'; +import {promiseAnimationFrame} from '../core/utilities.js'; import {DocumentUtil} from '../dom/document-util.js'; import {TextSourceElement} from '../dom/text-source-element.js'; import {TextSourceRange} from '../dom/text-source-range.js'; diff --git a/ext/js/app/popup-factory.js b/ext/js/app/popup-factory.js index 14fc4617..f9eec913 100644 --- a/ext/js/app/popup-factory.js +++ b/ext/js/app/popup-factory.js @@ -17,7 +17,7 @@ */ import {FrameOffsetForwarder} from '../comm/frame-offset-forwarder.js'; -import {generateId} from '../core.js'; +import {generateId} from '../core/utilities.js'; import {yomitan} from '../yomitan.js'; import {PopupProxy} from './popup-proxy.js'; import {PopupWindow} from './popup-window.js'; diff --git a/ext/js/app/popup-proxy.js b/ext/js/app/popup-proxy.js index 66c91994..fa4a448b 100644 --- a/ext/js/app/popup-proxy.js +++ b/ext/js/app/popup-proxy.js @@ -16,7 +16,8 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import {EventDispatcher, log} from '../core.js'; +import {EventDispatcher} from '../core/event-dispatcher.js'; +import {log} from '../core/logger.js'; import {yomitan} from '../yomitan.js'; /** diff --git a/ext/js/app/popup-window.js b/ext/js/app/popup-window.js index ff8a1273..60d99612 100644 --- a/ext/js/app/popup-window.js +++ b/ext/js/app/popup-window.js @@ -16,7 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import {EventDispatcher} from '../core.js'; +import {EventDispatcher} from '../core/event-dispatcher.js'; import {yomitan} from '../yomitan.js'; /** diff --git a/ext/js/app/popup.js b/ext/js/app/popup.js index d83618d3..0a84f3f7 100644 --- a/ext/js/app/popup.js +++ b/ext/js/app/popup.js @@ -17,8 +17,11 @@ */ import {FrameClient} from '../comm/frame-client.js'; -import {DynamicProperty, EventDispatcher, EventListenerCollection, deepEqual} from '../core.js'; +import {DynamicProperty} from '../core/dynamic-property.js'; +import {EventDispatcher} from '../core/event-dispatcher.js'; +import {EventListenerCollection} from '../core/event-listener-collection.js'; import {ExtensionError} from '../core/extension-error.js'; +import {deepEqual} from '../core/utilities.js'; import {DocumentUtil} from '../dom/document-util.js'; import {loadStyle} from '../dom/style-util.js'; import {yomitan} from '../yomitan.js'; |