#3739: Bullet/Number list feature not working
---------------------------+------------------------------------------------
 Reporter:  damo           |       Owner:  wwalc       
     Type:  Bug            |      Status:  new         
 Priority:  Normal         |   Milestone:  CKEditor 3.0
Component:  General        |     Version:              
 Keywords:  Confirmed IBM  |  
---------------------------+------------------------------------------------
Changes (by wwalc):

  * owner:  garry.yao => wwalc
  * status:  assigned => new


Comment:

 The problem was in invalid compression of this piece of code:
 {{{
 ( mergeSibling = function( rtl ){

         var sibling = listNode[ rtl ? 'getPrevious' : 'getNext' ].call(
 listNode, true );
         if ( sibling && sibling.getName && sibling.getName() ==
 listCommand.type )
         {
                 sibling.remove();
                 sibling.moveChildren( listNode );
         }
 } )();
 }}}

 it was compressed by CKReleaser to:

 {{{
 G = function(I) {
         var J = y[I ? 'getPrevious' : 'getNext'].call(y, true);
         if (J && J.getName && J.getName() == H.type) {
                 J.remove();
                 J.moveChildren(y);
         }
 }();
 }}}

 (surrounding brackets are missing).

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/3739#comment:3>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
FCKeditor-Trac mailing list
FCKeditor-Trac@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to