1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-12-03 15:28:05 +00:00

Fix switching language should not make the lang attribute empty (#8831)

* Fix switching language should not make the lang attribute empty

* Use name field
This commit is contained in:
Leilei332
2024-12-20 22:25:16 +08:00
committed by GitHub
parent e8a23e9bcc
commit 49a33ae467

View File

@@ -88,6 +88,7 @@ exports.startup = function() {
if($tw.browser) {
var pluginTiddler = $tw.wiki.getTiddler(plugins[0]);
if(pluginTiddler) {
document.documentElement.setAttribute("lang",pluginTiddler.getFieldString("name"));
document.documentElement.setAttribute("dir",pluginTiddler.getFieldString("text-direction") || "auto");
} else {
document.documentElement.removeAttribute("dir");