Skip to content

Commit 950a3db

Browse files
committed
#9543: Setting "application" role on floating panels.
1 parent d8db6b0 commit 950a3db

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

plugins/floatpanel/plugin.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ CKEDITOR.plugins.add( 'floatpanel', {
6464
// Disable native browser menu. (#4825)
6565
element.disableContextMenu();
6666

67+
// Floating panels are placed outside the main editor UI, so we must
68+
// make them application regions as well. (#9543)
69+
element.setAttribute( 'role', 'application' );
70+
6771
this.element = element;
6872

6973
this._ = {

0 commit comments

Comments
 (0)