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

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

View file

@ -19,7 +19,7 @@ export const showKeyboardToolbar = (bottom = 0) => {
return;
}
setTimeout(() => {
setTimeout(() => { // Android 端事件需要滞后一些,所以这里统一延迟一下
scrollCenter(window.siyuan.mobileEditor.protyle, undefined, false, (window.outerHeight - 65) / 2 - 30);
}, 100);
};