1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-24 22:33:16 +00:00

Write the right "color-scheme" meta tag to the iframe of the framed text-editor (#6656)

* Write the right "color-scheme" meta tag to the iframe of the framed text-editor

* Update framed.js
This commit is contained in:
Simon Huber 2022-04-24 22:45:56 +02:00 committed by GitHub
parent 400936920a
commit 3cf078faeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,8 +34,10 @@ function FramedEngine(options) {
this.parentNode.insertBefore(this.iframeNode,this.nextSibling);
this.iframeDoc = this.iframeNode.contentWindow.document;
// (Firefox requires us to put some empty content in the iframe)
var paletteTitle = this.widget.getTiddlerText("$:/palette");
var colorScheme = paletteTitle.fields["color-scheme"] || "light";
this.iframeDoc.open();
this.iframeDoc.write("");
this.iframeDoc.write("<meta name='color-scheme' content='" + colorScheme + "'>");
this.iframeDoc.close();
// Style the iframe
this.iframeNode.className = this.dummyTextArea.className;