This commit is contained in:
parent
d74f49a8ef
commit
520aa895fc
1 changed files with 3 additions and 6 deletions
|
@ -122,12 +122,9 @@ export class Protyle {
|
|||
this.protyle.background.ial.title = data.data.title;
|
||||
}
|
||||
}
|
||||
if (this.protyle.options.render.title && this.protyle.block.parentID === data.data.id) {
|
||||
if (getSelection().rangeCount > 0 && this.protyle.element.contains(getSelection().getRangeAt(0).startContainer)) {
|
||||
// 编辑中的不用更新
|
||||
} else {
|
||||
this.protyle.title.setTitle(data.data.title);
|
||||
}
|
||||
if (this.protyle.options.render.title && this.protyle.block.parentID === data.data.id &&
|
||||
this.protyle.title.editElement.textContent !== data.data.title) {
|
||||
this.protyle.title.setTitle(data.data.title);
|
||||
}
|
||||
// update ref
|
||||
this.protyle.wysiwyg.element.querySelectorAll(`[data-type~="block-ref"][data-id="${data.data.id}"]`).forEach(item => {
|
||||
|
|
Loading…
Add table
Reference in a new issue