grapesjs-plugin-ckeditor icon indicating copy to clipboard operation
grapesjs-plugin-ckeditor copied to clipboard

CKEditor Dialogs Issue on fullscreen

Open NorthstarTech opened this issue 5 years ago • 2 comments

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.

NorthstarTech avatar Mar 06 '19 11:03 NorthstarTech

Hi, is there any update on this issue? could really use some help.

junaidsmsG avatar Jul 05 '19 09:07 junaidsmsG

@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');
         });
     });

khurram900 avatar Dec 15 '21 13:12 khurram900