Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' into t/225
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Jul 5, 2017
2 parents c1c8d86 + 892e2da commit d938f52
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/notification/notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default class Notification extends Plugin {
* @inheritDoc
*/
static get pluginName() {
return 'ui/notification';
return 'Notification';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/panel/balloon/contextualballoon.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default class ContextualBalloon extends Plugin {
* @inheritDoc
*/
static get pluginName() {
return 'ui/contextualballoon';
return 'ContextualBalloon';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/toolbar/contextual/contextualtoolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default class ContextualToolbar extends Plugin {
* @inheritDoc
*/
static get pluginName() {
return 'ui/contextualtoolbar';
return 'ContextualToolbar';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/panel/balloon/contextualballoon.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
} );
} );

Expand Down
2 changes: 1 addition & 1 deletion tests/toolbar/contextual/contextualtoolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
} );
} );

Expand Down

0 comments on commit d938f52

Please sign in to comment.