grapesjs-plugin-ckeditor
grapesjs-plugin-ckeditor copied to clipboard
CKEditor Dialogs Issue on fullscreen
When we double click on link icon in fullscreen mode, then press ESC button, you see that whole editor is disabled. Please provide the solution for it. Thanks
Issue also appearing on demo.
Hi, is there any update on this issue? could really use some help.
@NorthstarTech @junaidsmsG
below hack works for me
CKEDITOR.on('dialogDefinition', function (e) {
var dialogName = e.data.name;
var dialog = e.data.definition.dialog;
dialog.on('show', function () {
if( editor.Commands.isActive('fullscreen')) editor.stopCommand('fullscreen');
});
});