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/dom/document-util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/js/dom/document-util.js') diff --git a/ext/js/dom/document-util.js b/ext/js/dom/document-util.js index dc5393bf..235a42d0 100644 --- a/ext/js/dom/document-util.js +++ b/ext/js/dom/document-util.js @@ -386,7 +386,7 @@ export class DocumentUtil { /** * Adds a fullscreen change event listener. This function handles all of the browser-specific variants. * @param {EventListener} onFullscreenChanged The event callback. - * @param {?import('../core.js').EventListenerCollection} eventListenerCollection An optional `EventListenerCollection` to add the registration to. + * @param {?import('../core/event-listener-collection.js').EventListenerCollection} eventListenerCollection An optional `EventListenerCollection` to add the registration to. */ static addFullscreenChangeEventListener(onFullscreenChanged, eventListenerCollection = null) { const target = document; -- cgit v1.2.3