Ticket #5593: 5593.patch
File 5593.patch, 544 bytes (added by , 15 years ago) |
---|
-
_source/plugins/enterkey/plugin.js
32 32 var path = new CKEDITOR.dom.elementPath( range.startContainer ), 33 33 block = path.block; 34 34 35 if ( block .is( 'li' ) || block.getParent().is( 'li') )35 if ( block && ( block.is( 'li' ) || block.getParent().is( 'li' ) ) ) 36 36 { 37 37 editor.execCommand( 'outdent' ); 38 38 return;