#3430: Provide an easy way to add and remove plugins
-------------------------+--------------------------------------------------
 Reporter:  fredck       |       Owner:  fredck      
     Type:  New Feature  |      Status:  new         
 Priority:  Normal       |   Milestone:  CKEditor 3.0
Component:  General      |     Version:              
 Keywords:  Confirmed    |  
-------------------------+--------------------------------------------------
 Currently, it's a bit cumbersome to add and remove plugins in the editor
 setting. To do that, we need to manipulate the ''plugins'' setting string
 in the custom configuration file. For example:

 {{{
 // Add a new plugin.
 config.plugins += ',myplugin';

 // Remove the elementspath plugin.
 config.plugins = config.plugins.replace( /(?:^|,)elementspath(?=,|$)/, ''
 );
 }}}

 This situation, other than being counterintuitive, makes it impossible to
 set these configurations at editor creation time. We should instead have
 ways to make it with easy, as this is a common task.

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/3430>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
FCKeditor-Trac mailing list
FCKeditor-Trac@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to