mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-03 19:30:16 +01:00
This commit is contained in:
parent
350b9a8247
commit
63402ffaa9
6 changed files with 22 additions and 2 deletions
|
|
@ -11,6 +11,8 @@ import {focusByRange, getSelectionPosition} from "../../protyle/util/selection";
|
|||
import {getCurrentEditor} from "../editor";
|
||||
import {fontEvent, getFontNodeElements} from "../../protyle/toolbar/Font";
|
||||
import {hideElements} from "../../protyle/ui/hideElements";
|
||||
import {input} from "../../protyle/wysiwyg/input";
|
||||
import {showMessage} from "../../dialog/message";
|
||||
|
||||
let renderKeyboardToolbarTimeout: number;
|
||||
let showUtil = false;
|
||||
|
|
@ -474,6 +476,7 @@ export const initKeyboardToolbar = () => {
|
|||
<span class="keyboard__split"></span>
|
||||
<button class="keyboard__action" data-type="moveup"><svg><use xlink:href="#iconUp"></use></svg></button>
|
||||
<button class="keyboard__action" data-type="movedown"><svg><use xlink:href="#iconDown"></use></svg></button>
|
||||
<button class="keyboard__action" data-type="softLine"><svg><use xlink:href="#iconArrowDown"></use></svg></button>
|
||||
</div>
|
||||
<div class="fn__none keyboard__dynamic">
|
||||
<button class="keyboard__action" data-type="goback"><svg><use xlink:href="#iconBack"></use></svg></button>
|
||||
|
|
@ -622,6 +625,11 @@ export const initKeyboardToolbar = () => {
|
|||
moveToDown(protyle, nodeElement, range);
|
||||
focusByRange(range);
|
||||
return;
|
||||
} else if (type === "softLine") {
|
||||
range.insertNode(document.createTextNode("\n"));
|
||||
range.collapse(false);
|
||||
input(protyle, nodeElement, range);
|
||||
return;
|
||||
} else if (type === "add") {
|
||||
if (buttonElement.classList.contains("protyle-toolbar__item--current")) {
|
||||
hideKeyboardToolbarUtil();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue