Panagiotis Tzanetakos

Results 2 comments of Panagiotis Tzanetakos

It looks like the `init_instance_callback` callback [is not supported](https://github.com/jazzband/django-tinymce/blob/master/tinymce/static/django_tinymce/init_tinymce.js#L10). Use the `setup` callback instead

``` TINYMCE_DEFAULT_CONFIG = { .... `"setup":"""function (editor) { editor.on('blur', function (e) { editor.save(); console.log('test') });} """ } ``` The `blur` event in order to trigger the focus event, it must...