From ac17fac920062e0781e6a51bec6e5abd22efc613 Mon Sep 17 00:00:00 2001 From: Lee Newson Date: Wed, 5 Jun 2019 07:53:16 +1000 Subject: [PATCH] Fixed the bootstrap intergration docs using an incorrect selector --- integrations/bootstrap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/bootstrap.md b/integrations/bootstrap.md index ad7cc890b..d96835406 100644 --- a/integrations/bootstrap.md +++ b/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(); } });