Changeset 13668
- Timestamp:
- 05/10/08 09:18:03 (6 days ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1/dijit/_editor/plugins/EnterKeyHandling.js
r12207 r13668 177 177 range.startContainer, range.startOffset)){ 178 178 dojo.place(newblock, block.blockNode, block.blockNode === block.blockContainer ? "first" : "before"); 179 if( this.editor.height){179 if(newblock.nextSibling && this.editor.height){ 180 180 //browser does not scroll the caret position into view, do it manually 181 newblock. scrollIntoView(false);181 newblock.nextSibling.scrollIntoView(false); 182 182 } 183 183 _letBrowserHandle = false;