1// Prevent Bootstrap dialog from blocking focusin
2$(document).on('focusin', function(e) {
3 if ($(e.target).closest(".tox-tinymce, .tox-tinymce-aux, .moxman-window, .tam-assetmanager-root").length) {
4 e.stopImmediatePropagation();
5 }
6});
7