Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CKEditor Dialogs Issue on fullscreen #26

Open
NorthstarTech opened this issue Mar 6, 2019 · 2 comments
Open

CKEditor Dialogs Issue on fullscreen #26

NorthstarTech opened this issue Mar 6, 2019 · 2 comments

Comments

@NorthstarTech
Copy link

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.

@junaidsmsG
Copy link

junaidsmsG commented Jul 5, 2019

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

@khurram900
Copy link

khurram900 commented Dec 15, 2021

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants