From e8079a68acba6077ab621757ac236be4206b0996 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sat, 10 Feb 2024 23:12:31 -0500 Subject: Move isExtensionUrl into WebExtension (#666) --- ext/js/application.js | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'ext/js/application.js') diff --git a/ext/js/application.js b/ext/js/application.js index 227e9d5e..d7ab6725 100644 --- a/ext/js/application.js +++ b/ext/js/application.js @@ -76,14 +76,6 @@ export class Application extends EventDispatcher { // NOP } - /** @type {?string} */ - this._extensionUrlBase = null; - try { - this._extensionUrlBase = this._webExtension.getUrl('/'); - } catch (e) { - // NOP - } - /** @type {?boolean} */ this._isBackground = null; /** @type {API} */ @@ -148,15 +140,6 @@ export class Application extends EventDispatcher { this._webExtension.sendMessagePromise({action: 'applicationReady'}); } - /** - * Checks whether or not a URL is an extension URL. - * @param {string} url The URL to check. - * @returns {boolean} `true` if the URL is an extension URL, `false` otherwise. - */ - isExtensionUrl(url) { - return this._extensionUrlBase !== null && url.startsWith(this._extensionUrlBase); - } - /** */ triggerStorageChanged() { this.trigger('storageChanged', {}); -- cgit v1.2.3