File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,11 @@ CKEditor 4 Changelog
9
9
* [ #10249 ] ( http://dev.ckeditor.com/ticket/10249 ) : Wrong undo/redo states at start.
10
10
* [ #10268 ] ( http://dev.ckeditor.com/ticket/10268 ) : "Show blocks" does not recover after switching to sour source view.
11
11
* [ #9995 ] ( http://dev.ckeditor.com/ticket/9995 ) : HTML in ` textarea ` should not be modified by the ` htmlDataProcessor ` .
12
- * [ #10315 ] ( http://dev.ckeditor.com/ticket/10315 ) : [ Webkit] Undo manager should not record snapshots after filling char has been added/removed.
13
12
* [ #10320 ] ( http://dev.ckeditor.com/ticket/10320 ) : Justify plugin should add elements to the ACF based on current enter mode.
14
13
* [ #10260 ] ( http://dev.ckeditor.com/ticket/10260 ) : Fixed: Advanced Content Filter blocks tabSpaces. Unified ` data-cke-* ` attributes filtering.
14
+ * [ #10315 ] ( http://dev.ckeditor.com/ticket/10315 ) : [ Webkit] Undo manager should not record snapshots after filling char has been added/removed.
15
15
* [ #10291 ] ( http://dev.ckeditor.com/ticket/10291 ) : [ Webkit] Space after filling char should be secured.
16
+ * [ #10330 ] ( http://dev.ckeditor.com/ticket/10330 ) : [ Webkit] Filling char is not removed on ` keydown ` in specific cases.
16
17
17
18
## CKEditor 4.1
18
19
Original file line number Diff line number Diff line change 417
417
418
418
if ( CKEDITOR . env . webkit ) {
419
419
// Before keystroke is handled by editor, check to remove the filling char.
420
- doc . on ( 'keydown' , function ( evt ) {
420
+ editable . attachListener ( doc , 'keydown' , function ( evt ) {
421
421
var key = evt . data . getKey ( ) ;
422
422
// Remove the filling char before some keys get
423
423
// executed, so they'll not get blocked by it.
432
432
case 8 : // BACKSPACE
433
433
case 45 : // INS
434
434
case 46 : // DEl
435
- removeFillingChar ( editor . editable ( ) ) ;
435
+ removeFillingChar ( editable ) ;
436
436
}
437
437
438
438
} , null , null , - 1 ) ;
You can’t perform that action at this time.
0 commit comments