#2820: Forms plugin
-------------------------+--------------------------------------------------
 Reporter:  arczi        |       Owner:  arczi       
     Type:  New Feature  |      Status:  new         
 Priority:  Normal       |   Milestone:  CKEditor 3.0
Component:  General      |     Version:              
 Keywords:  Review-      |  
-------------------------+--------------------------------------------------
Changes (by fredck):

  * keywords:  Review? => Review-


Comment:

 * Please add the following to the init function, so the forms get visible,
 just like V2:

 {{{
 editor.addCss(
         'form' +
         '{' +
                 'border: 1px dotted #FF0000;' +
                 'padding: 2px;' +
         '}' );
 }}}

  * You still have problems with missing "var" statements. For example:

 {{{
 // Patch code:
 removeSelectedOptions = function ( combo )

 // Correct code:
 var removeSelectedOptions = function( combo )

 // For private functions, even better:
 function removeSelectedOptions( combo )
 }}}

 We'll have a Review+ after these fixes.

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/2820#comment:11>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
FCKeditor-Trac mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to