File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ Fixed Issues:
16
16
* [ #10836 ] ( http://dev.ckeditor.com/ticket/10836 ) : [ Enhanced Image] ( http://ckeditor.com/addon/image2 ) : Preserve custom mouse cursor while resizing the image.
17
17
* [ #10881 ] ( http://dev.ckeditor.com/ticket/10881 ) : Various improvements to * Enter* key behaviour in nested editables.
18
18
* [ #10879 ] ( http://dev.ckeditor.com/ticket/10879 ) : Remove format should not leak from nested editable.
19
+ * [ #10877 ] ( http://dev.ckeditor.com/ticket/10877 ) : Fixed: WebSpellChecker fails to apply changes if nested editable was focused.
19
20
20
21
## CKEditor 4.3 Beta
21
22
Original file line number Diff line number Diff line change 218
218
}
219
219
220
220
function updateCommandsContext ( editor , path , forceRefresh ) {
221
+ // Commands cannot be refreshed without a path. In edge cases
222
+ // it may happen that there's no selection when this function is executed.
223
+ // For example when active filter is changed in #10877.
224
+ if ( ! path )
225
+ return ;
226
+
221
227
var command ,
222
228
name ,
223
229
commands = editor . commands ;
You can’t perform that action at this time.
0 commit comments