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/scan-inputs-simple-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/scan-inputs-simple-controller.js')
| -rw-r--r-- | ext/js/settings/scan-inputs-simple-controller.js | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/ext/js/settings/scan-inputs-simple-controller.js b/ext/js/settings/scan-inputs-simple-controller.js index 01f044c2..b011af5d 100644 --- a/ext/js/settings/scan-inputs-simple-controller.js +++ b/ext/js/settings/scan-inputs-simple-controller.js @@ -18,7 +18,6 @@  /* global   * HotkeyUtil   * ScanInputsController - * api   */  class ScanInputsSimpleController { @@ -34,7 +33,7 @@ class ScanInputsSimpleController {          this._middleMouseButtonScan = document.querySelector('#middle-mouse-button-scan');          this._mainScanModifierKeyInput = document.querySelector('#main-scan-modifier-key'); -        const {platform: {os}} = await api.getEnvironmentInfo(); +        const {platform: {os}} = await yomichan.api.getEnvironmentInfo();          this._hotkeyUtil.os = os;          this._mainScanModifierKeyInputHasOther = false; |