Changeset 4919
- Timestamp:
- 01/13/10 14:21:07 (3 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/core/dom/element.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r4918 r4919 49 49 <li><a href="http://dev.fckeditor.net/ticket/4724">#4724</a> : Using the mouse to insert a link in IE might create incorrect results.</li> 50 50 <li><a href="http://dev.fckeditor.net/ticket/4640">#4640</a> : Small optimizations for the fileBrowser plugin.</li> 51 <li><a href="http://dev.fckeditor.net/ticket/4964">#4964</a> : The BACKSPACE key positioning was not correct in some cases with Firefox.</li> 51 52 </ul> 52 53 <h3> -
CKEditor/trunk/_source/core/dom/element.js
r4904 r4919 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 },
Note: See TracChangeset
for help on using the changeset viewer.
