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/display/query-parser.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ext/js/display/query-parser.js') diff --git a/ext/js/display/query-parser.js b/ext/js/display/query-parser.js index 05ebfa27..29401657 100644 --- a/ext/js/display/query-parser.js +++ b/ext/js/display/query-parser.js @@ -17,7 +17,6 @@ /* global * TextScanner - * api */ class QueryParser extends EventDispatcher { @@ -76,7 +75,7 @@ class QueryParser extends EventDispatcher { const token = {}; this._setTextToken = token; - this._parseResults = await api.textParse(text, this._getOptionsContext()); + this._parseResults = await yomichan.api.textParse(text, this._getOptionsContext()); if (this._setTextToken !== token) { return; } this._refreshSelectedParser(); @@ -116,7 +115,7 @@ class QueryParser extends EventDispatcher { _setSelectedParser(value) { const optionsContext = this._getOptionsContext(); - api.modifySettings([{ + yomichan.api.modifySettings([{ action: 'set', path: 'parsing.selectedParser', value, -- cgit v1.2.3