I am using forala with following setting:
initOnClick: true,
works perfectly fine, but is there a possibility to achieve the "counterpart" I want to hide the editor on blur.
I did not find anything in the documentation
If anybody has the same issue here is the solution:
events: {
blur: function() {
this.toolbar.hide()
},
focus: function() {
this.toolbar.show()
}