﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
10913	Plugins added with CKEDITOR.plugins.addExternal do not work	Wiktor Walc	Frederico Caldeira Knabben	"I moved the smiley folder out of the `ckeditor/plugins` folder and put it into a separate location. To use the extra plugin:

{{{
CKEDITOR.replace( 'editor1', { extraPlugins : 'smiley' } );
}}}

I'm trying to register an external plugin.

This one works:

{{{
CKEDITOR.plugins.addExternal( 'smiley', '/plugins/smiley/', 'plugin.js' );
}}}

'''while this method doesn't fully work:'''

{{{
CKEDITOR.plugins.addExternal( 'smiley', '/plugins/smiley/plugin.js', '' );
}}}

According to the [http://docs.ckeditor.com/#!/api/CKEDITOR.resourceManager-method-addExternal documentation], both should work.

The result for the latter is that the English translation is not properly loaded, as a result the editor does not start at all.

The requested URL for the language file is:
{{{
/plugins/smiley/plugin.jslang/en.js
}}}"	Bug	closed	Normal	CKEditor 4.2.2	General	4.0	fixed		
