#3783: Indenting commands in table cells creates collapsed paragraphs.
-----------------------------+----------------------------------------------
 Reporter:  martinkou        |       Owner:  garry.yao     
     Type:  Bug              |      Status:  assigned      
 Priority:  Normal           |   Milestone:  CKEditor 3.0  
Component:  General          |     Version:  SVN (CKEditor)
 Keywords:  Firefox Review-  |  
-----------------------------+----------------------------------------------
Changes (by fredck):

  * keywords:  Firefox Review? => Firefox Review-


Comment:

 Let's simplify the implementation just a little bit. Something like this:

 {{{
 getNext : function( evaluator )
 {
         var next = this.$, retval;
         do
         {
                 next = next.nextSibling;
                 retval = next && new CKEDITOR.dom.node( next );
         }
         while ( retval && evaluator && !evaluator( retval ) )
         return retval;
 }
 }}}

 Also, I understand the theoretical benefit for the getFirst and getLast
 changes, but we're not using this new feature anywhere, so we should not
 have it at this time. We may introduce it in the future at first use.
 Please revert those changes.

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/3783#comment:4>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
FCKeditor-Trac mailing list
FCKeditor-Trac@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to