mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-30 21:38:48 +01:00
💄
This commit is contained in:
parent
47df8b6018
commit
12ce85ca5e
2 changed files with 4 additions and 0 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue