diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-05-06 21:29:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-07 01:29:06 +0000 |
commit | 4ec1de0c98199b637bb538ee567ee7b2ffacbb80 (patch) | |
tree | 078a5c72dd1e40f9ad6db253f3a6c76777399bed /ext/js | |
parent | e8340a8de705e816d74c0ae7f2222c986dbd4d8c (diff) |
Fix mobile action-popup (#886)
* Fix mobile action popup
* Fix toggle-handle
* Prevent action-popup looking wacky if it somehow gets rendered as a popup (desktop) instead of a full page (mobile)
* Replace chevron icons with action specific icons
Diffstat (limited to 'ext/js')
-rw-r--r-- | ext/js/pages/action-popup-main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/pages/action-popup-main.js b/ext/js/pages/action-popup-main.js index 8dca8934..4125b2d1 100644 --- a/ext/js/pages/action-popup-main.js +++ b/ext/js/pages/action-popup-main.js @@ -187,7 +187,7 @@ class DisplayController { _setupOptions({options}) { const extensionEnabled = options.general.enable; const onToggleChanged = () => this._api.commandExec('toggleTextScanning'); - for (const toggle of /** @type {NodeListOf<HTMLInputElement>} */ (document.querySelectorAll('#enable-search,#enable-search2'))) { + for (const toggle of /** @type {NodeListOf<HTMLInputElement>} */ (document.querySelectorAll('.enable-search,.enable-search2'))) { toggle.checked = extensionEnabled; toggle.addEventListener('change', onToggleChanged, false); } |