* The list of possible options to set for FCKeditor can be found here: <a href="http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options">http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options</a>.<br/>
* @param javascriptConfiguration the javascript configuration.
* @return the option to set a custom configuration.
*/
public static NSOption setCustomJavascriptConfiguration(final String javascriptConfiguration) {
return new NSOption(SET_CUSTOM_JAVASCRIPT_CONFIGURATION_OPTION_KEY) {
@Override
public Object getOptionValue() {
return javascriptConfiguration;
}
};