🎨 移动端键盘弹起后光标定位居中 https://github.com/siyuan-note/siyuan/issues/6074

This commit is contained in:
Liang Ding 2022-10-07 19:59:11 +08:00
parent 63aef7a8c0
commit 1d9bd070d1
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -18,7 +18,10 @@ export const showKeyboardToolbar = (bottom = 0) => {
!window.siyuan.mobileEditor.protyle.wysiwyg.element.contains(range.startContainer)) {
return;
}
scrollCenter(window.siyuan.mobileEditor.protyle, undefined, false, (window.outerHeight - 65) / 2 - 30);
setTimeout(() => {
scrollCenter(window.siyuan.mobileEditor.protyle, undefined, false, (window.outerHeight - 65) / 2 - 30);
}, 100);
};
export const hideKeyboardToolbar = () => {