Explorar el Código

Merge branch 'master' into t/225

Piotrek Koszuliński hace 8 años
padre
commit
c8d5b9e5bf

+ 1 - 1
packages/ckeditor5-ui/src/notification/notification.js

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

+ 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 'ui/contextualballoon';
+		return 'ContextualBalloon';
 	}
 
 	/**

+ 1 - 1
packages/ckeditor5-ui/src/toolbar/contextual/contextualtoolbar.js

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

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

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

+ 1 - 1
packages/ckeditor5-ui/tests/toolbar/contextual/contextualtoolbar.js

@@ -109,7 +109,7 @@ describe( 'ContextualToolbar', () => {
 
 	describe( 'pluginName', () => {
 		it( 'should return plugin by its name', () => {
-			expect( editor.plugins.get( 'ui/contextualtoolbar' ) ).to.equal( contextualToolbar );
+			expect( editor.plugins.get( 'ContextualToolbar' ) ).to.equal( contextualToolbar );
 		} );
 	} );