-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Description
See https://codesandbox.io/s/tinymce-vue-bootstrap-vue-modal-focusin-zxfjn
Use official workaround for bootstrap-vue modal not works. The Tinymce dialog are not editable.
// Prevent Bootstrap dialog from blocking focusin
$(document).on('focusin', function(e) {
if ($(e.target).closest(".tox-tinymce-aux, .moxman-window, .tam-assetmanager-root").length) {
e.stopImmediatePropagation();
}
});
Seems works with native Bootstrap 4 https://codesandbox.io/s/bootstrap-tinymce-mxi9f
The issue also post at tinymce/tinymce-vue#116