Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 11754)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#12398 fixed Maximize-Button doesn't work in instances without a title Artur Delura Tobias Hößl
Description

When CKEditor is initialized like this...

CKEDITOR.replace(element, { title: '' });

...the Maximize-Button does produces an javascript-error and fails:

Uncaught TypeError: Cannot read property 'setCustomData' of null ckeditor.js:830
Uncaught TypeError: Cannot read property 'setSize' of null ckeditor.js:321

This can be seen here: https://www.hoessl.eu/ckeditor/samples/divreplace.html This is from the standard package, with only one modification: the ", {title: }" was added.

The reason seams to be that no .cke_voice_label-element is created for the instance when the title is empty, but the maximize-plugin thinks the .cke_inner-element is always the second child of its parent, probably in line 128 of plugins/maximize/plugin.js:

var container = editor.container.getChild( 1 );

First bad commit: e7b3238

#12411 fixed Missing null check in the pagebreak plugin Artur Delura (David *)Frenkiel
Description

Line 137 in plugins/pagebreak/plugin.js: <code>return parent && parent.name == 'div' && parent.styles[ 'page-break-after' ]; </code>

I've come across content in which parent.styles was undefined, resulting in the parser process crashing and further plugins not being loaded. I'll try to add a screenshot, if the system here permits it.

#12484 fixed DOM is changed outside of editor area Artur Delura Boris Lykah
Description
  1. Open the attached file in Chrome and place the caret into the editable area.
  2. Mark all contents either with Ctrl+A or mouse selection.
  3. Delete the content with backspace or del key.
  4. Press Insert/Remove Numbered List button on the toolbar.

As the result, tag <div>other content</div> following the editable area is turned into a list.

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy