A quick JavaScript solution directly from TinyMCE:
<script>
// Prevent jQuery UI dialog from blocking focusin
$(document).on('focusin', function(e) {
if ($(event.target).closest(".mce-window").length) {
e.stopImmediatePropagation();
}
});
</script>
No comments:
Post a Comment