We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 31f783b + b46dd71 commit a598ed1Copy full SHA for a598ed1
plugins/format/plugin.js
@@ -63,6 +63,10 @@ CKEDITOR.plugins.add( 'format', {
63
64
onRender: function() {
65
editor.on( 'selectionChange', function( ev ) {
66
+ // Don't check state on selectionChange fired when combo is opened.
67
+ if ( this._.on )
68
+ return;
69
+
70
var currentTag = this.getValue();
71
72
var elementPath = ev.data.path;
0 commit comments