This commit is contained in:
Vanessa 2023-06-15 11:24:27 +08:00
parent 47df8b6018
commit 12ce85ca5e
2 changed files with 4 additions and 0 deletions

View file

@ -1054,6 +1054,7 @@ export const iframeMenu = (protyle: IProtyle, nodeElement: Element) => {
const iframeElement = nodeElement.querySelector("iframe");
let html = nodeElement.outerHTML;
const subMenus: IMenu[] = [{
iconHTML: "",
label: `<div class="fn__hr--small"></div><textarea rows="1" class="b3-text-field fn__size200" placeholder="${window.siyuan.languages.link}">${iframeElement.getAttribute("src") || ""}</textarea><div class="fn__hr--small"></div>`,
bind(element) {
element.querySelector("textarea").addEventListener("change", (event) => {

View file

@ -1130,6 +1130,7 @@ export class Gutter {
icon: "iconCode",
label: window.siyuan.languages.code,
submenu: [{
iconHTML: "",
label: `<div class="fn__flex" style="margin-bottom: 4px"><span>${window.siyuan.languages.md31}</span><span class="fn__space fn__flex-1"></span>
<input type="checkbox" class="b3-switch fn__flex-center"${linewrap === "true" ? " checked" : ((window.siyuan.config.editor.codeLineWrap && linewrap !== "false") ? " checked" : "")}></div>`,
bind(element) {
@ -1149,6 +1150,7 @@ export class Gutter {
});
}
}, {
iconHTML: "",
label: `<div class="fn__flex" style="margin-bottom: 4px"><span>${window.siyuan.languages.md2}</span><span class="fn__space fn__flex-1"></span>
<input type="checkbox" class="b3-switch fn__flex-center"${ligatures === "true" ? " checked" : ((window.siyuan.config.editor.codeLigatures && ligatures !== "false") ? " checked" : "")}></div>`,
bind(element) {
@ -1168,6 +1170,7 @@ export class Gutter {
});
}
}, {
iconHTML: "",
label: `<div class="fn__flex" style="margin-bottom: 4px"><span>${window.siyuan.languages.md27}</span><span class="fn__space fn__flex-1"></span>
<input type="checkbox" class="b3-switch fn__flex-center"${linenumber === "true" ? " checked" : ((window.siyuan.config.editor.codeSyntaxHighlightLineNum && linenumber !== "false") ? " checked" : "")}></div>`,
bind(element) {