Changes between Initial Version and Version 1 of Ticket #13806, comment 1
- Timestamp:
- Oct 8, 2015, 11:43:20 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13806, comment 1
initial v1 1 1 The offending line: 2 2 {{{ 3 f = f.type != CKEDITOR.NODE_ELEMENT || e === 0 || e == f.getChildCount() ? 0 : f.getChild(e - 1).type == CKEDITOR.NODE_TEXT && f.getChild(e).type == CKEDITOR.NODE_TEXT; 3 f = f.type != CKEDITOR.NODE_ELEMENT || e === 0 || 4 e == f.getChildCount() ? 0 : f.getChild(e - 1).type == CKEDITOR.NODE_TEXT && 5 f.getChild(e).type == CKEDITOR.NODE_TEXT; 4 6 }}} 5 7