|
@@ -41,11 +41,7 @@ export class TextEditorCtrl extends ModuleControl<EditorModule> {
|
|
|
pTagReg,
|
|
|
`$1$3${alink}$4`
|
|
|
);
|
|
|
- this.actions.updateCompData(
|
|
|
- this.store.currComp,
|
|
|
- "value",
|
|
|
- blocks.join("")
|
|
|
- );
|
|
|
+ this.store.currComp.value.setText(blocks.join(""));
|
|
|
return;
|
|
|
}
|
|
|
const editor = toRaw(this.state.currEditor);
|
|
@@ -77,8 +73,8 @@ export class TextEditorCtrl extends ModuleControl<EditorModule> {
|
|
|
|
|
|
blocks[index] = stylesStr;
|
|
|
});
|
|
|
- this.store.currComp.value.setText( blocks.join("") )
|
|
|
-
|
|
|
+ this.store.currComp.value.setText(blocks.join(""));
|
|
|
+
|
|
|
history.submit();
|
|
|
console.log("changing....");
|
|
|
}
|
|
@@ -156,7 +152,7 @@ export class TextEditorCtrl extends ModuleControl<EditorModule> {
|
|
|
blocks[index] = this.formatSortTags(spanStr, key, e);
|
|
|
});
|
|
|
|
|
|
- this.store.currComp.value.setText(blocks.join("") );
|
|
|
+ this.store.currComp.value.setText(blocks.join(""));
|
|
|
history.submit();
|
|
|
console.log("changing....");
|
|
|
}
|