|
@@ -87,8 +87,9 @@ export class WYSIWYG {
|
|
this.element = document.createElement("div");
|
|
this.element = document.createElement("div");
|
|
this.element.className = "protyle-wysiwyg";
|
|
this.element.className = "protyle-wysiwyg";
|
|
this.element.setAttribute("spellcheck", "false");
|
|
this.element.setAttribute("spellcheck", "false");
|
|
- if (navigator && navigator.maxTouchPoints > 1 && navigator.platform === "MacIntel") {
|
|
|
|
|
|
+ if (isMobile()) {
|
|
// iPhone,iPad 端输入 contenteditable 为 true 时会在块中间插入 span
|
|
// iPhone,iPad 端输入 contenteditable 为 true 时会在块中间插入 span
|
|
|
|
+ // Android 端空块输入法弹出会收起 https://ld246.com/article/1689713888289
|
|
this.element.setAttribute("contenteditable", "false");
|
|
this.element.setAttribute("contenteditable", "false");
|
|
} else {
|
|
} else {
|
|
this.element.setAttribute("contenteditable", "true");
|
|
this.element.setAttribute("contenteditable", "true");
|