diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-08 12:34:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-08 12:34:23 -0500 |
commit | 8cf10d685d52d5ae75d65c4aea4adcb6d101e9a4 (patch) | |
tree | 3a1874942370917e328976854c5a5c7352d9e085 /ext/bg/js/search-main.js | |
parent | db9ec4c4495404ad3ebc9ce56866c3631cedf8dc (diff) |
Search and display style updates (#1005)
* Use same selectors
* Use consistent stylesheet declaration
* Fix query parser not being cleared
* Set property upon load
* Don't focus for Enter key press
* Update search page styles
* Update indent and nodes
* Support dark style
* Add missing var
Diffstat (limited to 'ext/bg/js/search-main.js')
-rw-r--r-- | ext/bg/js/search-main.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/bg/js/search-main.js b/ext/bg/js/search-main.js index cf9282fd..07130631 100644 --- a/ext/bg/js/search-main.js +++ b/ext/bg/js/search-main.js @@ -28,6 +28,7 @@ const displaySearch = new DisplaySearch(); await displaySearch.prepare(); + document.documentElement.dataset.loaded = 'true'; yomichan.ready(); } catch (e) { yomichan.logError(e); |