Ticket #4964: 4964.patch
File 4964.patch, 689 bytes (added by , 13 years ago) |
---|
-
_source/core/dom/element.js
243 243 lastChild = lastChild.getPrevious(); 244 244 if ( !lastChild || !lastChild.is || !lastChild.is( 'br' ) ) 245 245 { 246 this.append( 247 CKEDITOR.env.opera ? 246 var bogus = CKEDITOR.env.opera ? 248 247 this.getDocument().createText('') : 249 this.getDocument().createElement( 'br' ) ); 248 this.getDocument().createElement( 'br' ); 249 250 CKEDITOR.env.gecko && bogus.setAttribute( 'type', '_moz' ); 251 252 this.append( bogus ); 250 253 } 251 254 }, 252 255