diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-14 15:53:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 15:53:35 -0500 |
commit | 286534e648af350d24fbf3c7892a7ec81aaeb4bd (patch) | |
tree | 89d88e961c5a0a6f508c66789e30b9ba4a968e73 /ext/js/settings/mecab-controller.js | |
parent | efe8140f103179f50b610f182148b9427af99010 (diff) |
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
Diffstat (limited to 'ext/js/settings/mecab-controller.js')
-rw-r--r-- | ext/js/settings/mecab-controller.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/js/settings/mecab-controller.js b/ext/js/settings/mecab-controller.js index ff2a4a66..122f82f9 100644 --- a/ext/js/settings/mecab-controller.js +++ b/ext/js/settings/mecab-controller.js @@ -15,10 +15,6 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -/* global - * api - */ - class MecabController { constructor(settingsController) { this._settingsController = settingsController; @@ -49,7 +45,7 @@ class MecabController { this._testButton.disabled = true; this._resultsContainer.textContent = ''; this._resultsContainer.hidden = true; - await api.testMecab(); + await yomichan.api.testMecab(); this._setStatus('Connection was successful', false); } catch (e) { this._setStatus(e.message, true); |