Browse Source

Added check to ensure acitonBar existed

pull/2429/head
adriangroch 7 years ago
parent
commit
93b3067a74
  1. 20
      src/rich_text_editor/model/RichTextEditor.js

20
src/rich_text_editor/model/RichTextEditor.js

@ -195,15 +195,17 @@ export default class RichTextEditor {
*/
syncActions() {
this.getActions().forEach(action => {
if (
!action.state ||
(action.state && action.state(this, this.doc) >= 0)
) {
const event = action.event || 'click';
action.btn[`on${event}`] = e => {
action.result(this, action);
this.updateActiveActions();
};
if (this.settings.actionbar) {
if (
!action.state ||
(action.state && action.state(this, this.doc) >= 0)
) {
const event = action.event || 'click';
action.btn[`on${event}`] = e => {
action.result(this, action);
this.updateActiveActions();
};
}
}
});
}

Loading…
Cancel
Save