Parcourir la source

This bit isn't needed any more.

Piotrek Koszuliński il y a 10 ans
Parent
commit
957e934602
1 fichiers modifiés avec 1 ajouts et 13 suppressions
  1. 1 13
      packages/ckeditor5-engine/src/ckeditor.js

+ 1 - 13
packages/ckeditor5-engine/src/ckeditor.js

@@ -76,19 +76,7 @@ const CKEDITOR = {
 	 * Holds global configuration defaults, which will be used by editor instances when such configurations are not
 	 * available on them directly.
 	 */
-	config: new Config(),
-
-	/**
-	 * Gets the full URL path for the specified plugin.
-	 *
-	 * Note that the plugin is not checked to exist. It is a pure path computation.
-	 *
-	 * @param {String} name The plugin name.
-	 * @returns {String} The full URL path of the plugin.
-	 */
-	getPluginPath( name ) {
-		return this.basePath + 'plugins/' + name + '/';
-	}
+	config: new Config()
 };
 
 export default CKEDITOR;