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

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

View file

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