Browse Source

Fixed the bootstrap intergration docs using an incorrect selector

pull/1067/head
Lee Newson 6 years ago
parent
commit
ac17fac920
  1. 2
      integrations/bootstrap.md

2
integrations/bootstrap.md

@ -15,7 +15,7 @@ Bootstrap blocks all focus events on contents within the dialog. Add this script
```js
// Prevent Bootstrap dialog from blocking focusin
$(document).on('focusin', function(e) {
if ($(e.target).closest(".mce-window").length) {
if ($(e.target).closest(".tox-tinymce-aux, .moxman-window, .tam-assetmanager-root").length) {
e.stopImmediatePropagation();
}
});

Loading…
Cancel
Save