Answers for "tinymce image and links inputs disabled"

0

tinymce image and links inputs disabled

// Prevent Bootstrap dialog from blocking focusin
$(document).on('focusin', function(e) {
   if ($(e.target).closest(".tox-tinymce, .tox-tinymce-aux, .moxman-window, .tam-assetmanager-root").length) {
      e.stopImmediatePropagation();
   }
});
Posted by: Guest on April-21-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language