Skip to content

Commit

Permalink
Bugfix - Tableresize not working in maximized mode with divarea
Browse files Browse the repository at this point in the history
Set z-index of resizer to 10000 or more
Fixes these two issues:
ckeditor/ckeditor4#1959
ckeditor/ckeditor4#909
  • Loading branch information
arpi68 authored and f1ames committed Jun 5, 2020
1 parent 474ed9d commit abfc0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@

resizer = CKEDITOR.dom.element.createFromHtml( '<div data-cke-temp=1 contenteditable=false unselectable=on ' +
'style="position:absolute;cursor:col-resize;filter:alpha(opacity=0);opacity:0;' +
'padding:0;background-color:#004;background-image:none;border:0px none;z-index:10"></div>', document );
'padding:0;background-color:#004;background-image:none;border:0px none;z-index:10000"></div>', document );

// Clean DOM when editor is destroyed.
editor.on( 'destroy', function() {
Expand Down

0 comments on commit abfc0c3

Please sign in to comment.