JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.4
[ckeditor.git] / _source / plugins / horizontalrule / plugin.js
index 7d8bde2..bdf9453 100644 (file)
@@ -14,19 +14,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                canUndo : false,    // The undo snapshot will be handled by 'insertElement'.\r
                exec : function( editor )\r
                {\r
-                       var hr = editor.document.createElement( 'hr' ),\r
-                               range = new CKEDITOR.dom.range( editor.document );\r
-\r
+                       var hr = editor.document.createElement( 'hr' );\r
                        editor.insertElement( hr );\r
-\r
-                       // If there's nothing or a non-editable block followed by, establish a new paragraph\r
-                       // to make sure cursor is not trapped.\r
-                       range.moveToPosition( hr, CKEDITOR.POSITION_AFTER_END );\r
-                       var next = hr.getNext();\r
-                       if ( !next || next.type == CKEDITOR.NODE_ELEMENT && !next.isEditable() )\r
-                               range.fixBlock( true, editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p'  );\r
-\r
-                       range.select();\r
                }\r
        };\r
 \r