diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-05-21 13:17:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 17:17:17 +0000 |
commit | 414256f4316b4815db302df3183b16dc48c1fb02 (patch) | |
tree | 56c13f9372060b2175a107c4ddc7521a96f64a4b /ext/js/display/display.js | |
parent | 4f39126ee16cc4be81c94e7c88896615b75b746a (diff) |
Fix HTML lang tags not matching the selected language (#979)
* Cleanup and add language tag to renderResult
* Add language switching support to anki card templates scanned text
* Update search page search-textbox lang on language switch
* Set queryparser lang
* Allow updating language for display-generator
* Only use kanji-stroke-orders font for japanese
Diffstat (limited to 'ext/js/display/display.js')
-rw-r--r-- | ext/js/display/display.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/js/display/display.js b/ext/js/display/display.js index 6b73f19b..988aa0ae 100644 --- a/ext/js/display/display.js +++ b/ext/js/display/display.js @@ -418,6 +418,7 @@ export class Display extends EventDispatcher { this._setTheme(options); this._hotkeyHelpController.setOptions(options); this._displayGenerator.updateHotkeys(); + this._displayGenerator.updateLanguage(options.general.language); this._hotkeyHelpController.setupNode(document.documentElement); this._elementOverflowController.setOptions(options); |