From 286534e648af350d24fbf3c7892a7ec81aaeb4bd Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 14 Feb 2021 15:53:35 -0500 Subject: Move api to yomichan object (#1392) * Move cross frame API from API to Yomichan * Add API instance to Yomichan * Move api global to yomichan.api * Pass yomichan to API * Remove IIFE --- ext/js/media/media-loader.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'ext/js/media') diff --git a/ext/js/media/media-loader.js b/ext/js/media/media-loader.js index 5974e31a..d9d40a36 100644 --- a/ext/js/media/media-loader.js +++ b/ext/js/media/media-loader.js @@ -15,10 +15,6 @@ * along with this program. If not, see . */ -/* global - * api - */ - class MediaLoader { constructor() { this._token = {}; @@ -84,7 +80,7 @@ class MediaLoader { async _getMediaData(path, dictionaryName, cachedData) { const token = this._token; - const data = (await api.getMedia([{path, dictionaryName}]))[0]; + const data = (await yomichan.api.getMedia([{path, dictionaryName}]))[0]; if (token === this._token && data !== null) { const contentArrayBuffer = this._base64ToArrayBuffer(data.content); const blob = new Blob([contentArrayBuffer], {type: data.mediaType}); -- cgit v1.2.3