ソースを参照

Changed ContextualBalloon plugin name.

Oskar Wróbel 8 年 前
コミット
42eda81ba7

+ 1 - 1
packages/ckeditor5-ui/src/panel/balloon/contextualballoon.js

@@ -32,7 +32,7 @@ export default class ContextualBalloon extends Plugin {
 	 * @inheritDoc
 	 */
 	static get pluginName() {
-		return 'contextualballoon';
+		return 'ui/contextualballoon';
 	}
 
 	/**

+ 1 - 1
packages/ckeditor5-ui/tests/panel/balloon/contextualballoon.js

@@ -56,7 +56,7 @@ describe( 'ContextualBalloon', () => {
 
 	describe( 'pluginName', () => {
 		it( 'should return plugin by name', () => {
-			expect( editor.plugins.get( 'contextualballoon' ) ).to.equal( balloon );
+			expect( editor.plugins.get( 'ui/contextualballoon' ) ).to.equal( balloon );
 		} );
 	} );