Skip to content

Commit 894c103

Browse files
committed
Merge branch 't/13494'
2 parents f79b703 + 0d99696 commit 894c103

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Fixed Issues:
2020
* [#13184](http://dev.ckeditor.com/ticket/13184): Fixed: Web page reloaded after drop on editor UI.
2121
* [#13410](http://dev.ckeditor.com/ticket/13410): Fixed: Error thrown in the [Auto Embed](http://ckeditor.com/addon/autoembed) plugin when undoing right after pasting a link.
2222
* [#13143](http://dev.ckeditor.com/ticket/13143): [Edge] Fixed: Focus lost while opening the panel.
23+
* [#13494](http://dev.ckeditor.com/ticket/13494): Fixed: Error thrown in toolbar configurator if plugin requirements are unsatisfied.
2324

2425
## CKEditor 4.5.1
2526

samples/toolbarconfigurator/js/abstracttoolbarmodifier.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -558,13 +558,9 @@ if ( !Object.keys ) {
558558
* @static
559559
*/
560560
AbstractToolbarModifier.extendPluginsConfig = function( config ) {
561-
var extraPlugins = config.extraPlugins,
562-
removePlugins = config.removePlugins;
561+
var extraPlugins = config.extraPlugins;
563562

564563
// Enable the special, lightweight area to replace wysiwygarea.
565564
config.extraPlugins = ( extraPlugins ? extraPlugins + ',' : '' ) + 'toolbarconfiguratorarea';
566-
// Disable plugins which do not affect toolbar buttons, to make the editor more lightweight.
567-
config.removePlugins = ( removePlugins ? removePlugins + ',' : '' ) +
568-
'autogrow,dialogadvtab,elementspath,enterkey,floatingspace,htmlwriter,magicline,resize,sharedspace,tab,wysiwygarea';
569565
};
570566
} )();

0 commit comments

Comments
 (0)