ckeditor with table/cell properties

This commit is contained in:
zadam
2020-02-29 14:32:26 +01:00
parent 724ba352e6
commit e5155130e7
7 changed files with 26 additions and 26 deletions

View File

@@ -38,10 +38,10 @@ class AppContext extends Component {
$("body").append($renderedWidget);
$renderedWidget.on('click', "[data-trigger-event]", e => {
const eventName = $(e.target).attr('data-trigger-event');
$renderedWidget.on('click', "[data-trigger-command]", e => {
const commandName = $(e.target).attr('data-trigger-command');
this.triggerEvent(eventName);
this.triggerCommand(commandName);
});
this.tabManager = new TabManager();