Changeset 631

Show
Ignore:
Timestamp:
2007-08-07 12:18:27 (3 years ago)
Author:
martinkou
Message:

Fixed #428 : Fixed the issue where creating lists from pasted text behaves differently in IE in respect to <br> tags.

Location:
FCKeditor/trunk
Files:
1 added
3 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/fckeditor.html

    r587 r631  
    114114LoadScript( '_source/commandclasses/fckstylecommand.js' ) ; 
    115115LoadScript( '_source/commandclasses/fckfitwindow.js' ) ; 
     116LoadScript( '_source/commandclasses/fcklistcommands.js' ) ; 
    116117LoadScript( '_source/internals/fckcommands.js' ) ; 
    117118 
  • FCKeditor/trunk/editor/_source/internals/fckcommands.js

    r501 r631  
    110110 
    111111                case 'SelectAll' : oCommand = new FCKSelectAllCommand() ; break ; 
     112                case 'InsertOrderedList' : oCommand = new FCKListCommand( 'InsertOrderedList' ) ; break ; 
     113                case 'InsertUnorderedList' : oCommand = new FCKListCommand( 'InsertUnorderedList' ) ; break ; 
    112114 
    113115                // Generic Undefined command (usually used when a command is under development). 
  • FCKeditor/trunk/fckpackager.xml

    r402 r631  
    121121                <File path="editor/_source/commandclasses/fckstylecommand.js" /> 
    122122                <File path="editor/_source/commandclasses/fckfitwindow.js" /> 
     123                <File path="editor/_source/commandclasses/fcklistcommands.js" /> 
    123124                <File path="editor/_source/internals/fckcommands.js" /> 
    124125