File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1154,7 +1154,7 @@ CKEDITOR.dom.range = function( root ) {
1154
1154
if ( node != startContainer )
1155
1155
siblingText = node . getText ( ) ;
1156
1156
else
1157
- siblingText = node . substring ( startOffset )
1157
+ siblingText = node . substring ( startOffset ) ;
1158
1158
1159
1159
// Check if it is white space.
1160
1160
if ( leadingWhitespaceRegex . test ( siblingText ) )
Original file line number Diff line number Diff line change 403
403
// Note: this function may only be used if hidden selection container
404
404
// is not in DOM any more.
405
405
function fixRangesAfterHiddenSelectionContainer ( ranges , root ) {
406
+ var range ;
406
407
for ( var i = 0 ; i < ranges . length ; ++ i ) {
407
408
range = ranges [ i ] ;
408
409
if ( range . endContainer . equals ( root ) ) {
You can’t perform that action at this time.
0 commit comments