diff options
Diffstat (limited to 'ext/js/settings/popup-window-controller.js')
-rw-r--r-- | ext/js/settings/popup-window-controller.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/js/settings/popup-window-controller.js b/ext/js/settings/popup-window-controller.js index cc83db68..403c060c 100644 --- a/ext/js/settings/popup-window-controller.js +++ b/ext/js/settings/popup-window-controller.js @@ -15,10 +15,6 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -/* global - * api - */ - class PopupWindowController { prepare() { const testLink = document.querySelector('#test-window-open-link'); @@ -33,6 +29,6 @@ class PopupWindowController { } async _testWindowOpen() { - await api.getOrCreateSearchPopup({focus: true}); + await yomichan.api.getOrCreateSearchPopup({focus: true}); } } |