@@ -117,7 +117,7 @@ export default class LinkActionsView extends View {
attributes: {
class: [
'ck',
- 'ck-link-actions',
+ 'ck-link-actions'
],
// https://github.com/ckeditor/ckeditor5-link/issues/90
@@ -367,14 +367,14 @@ describe( 'LinkCommand', () => {
expect( decoratorStates( command.manualDecorators ) ).to.deep.equal( {
linkIsFoo: false,
- linkIsBar: true,
+ linkIsBar: true
} );
command.restoreManualDecoratorStates();
linkIsFoo: true,
@@ -604,7 +604,7 @@ describe( 'LinkEditing', () => {
.create( {
plugins: [ Paragraph, LinkEditing, Enter, CustomLinks ],
link: {
- addTargetToExternalLinks: true,
+ addTargetToExternalLinks: true
}
} )
.then( newEditor => {
@@ -102,7 +102,7 @@ describe( 'LinkFormView', () => {
expect( view._focusables.map( f => f ) ).to.have.members( [
view.urlInputView,
view.saveButtonView,
- view.cancelButtonView,
+ view.cancelButtonView
] );