Skip to content

Commit

Permalink
Updated default CDN CKEditor 4 dependency to 4.19.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekbogdanski committed May 19, 2022
1 parent f852723 commit 7c53f05
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CKEditor 4 Angular Integration Changelog

## ckeditor4-angular 3.1.0

Other Changes:

* Updated default CDN CKEditor 4 dependency to [4.19.0](https://github.com/ckeditor/ckeditor4/blob/master/CHANGES.md#ckeditor-4190).

## ckeditor4-angular 3.0.0

Other Changes:
Expand Down
2 changes: 1 addition & 1 deletion src/ckeditor/ckeditor.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ describe( 'CKEditorComponent', () => {
fixture.detectChanges();

return whenEvent( 'ready', component ).then( () => {
expect( component.editorUrl ).toEqual( 'https://cdn.ckeditor.com/4.18.0/standard-all/ckeditor.js' );
expect( component.editorUrl ).toEqual( 'https://cdn.ckeditor.com/4.19.0/standard-all/ckeditor.js' );
} );
} );

Expand Down
4 changes: 2 additions & 2 deletions src/ckeditor/ckeditor.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ export class CKEditorComponent implements AfterViewInit, OnDestroy, ControlValue
/**
* CKEditor 4 script url address. Script will be loaded only if CKEDITOR namespace is missing.
*
* Defaults to 'https://cdn.ckeditor.com/4.18.0/standard-all/ckeditor.js'
* Defaults to 'https://cdn.ckeditor.com/4.19.0/standard-all/ckeditor.js'
*/
@Input() editorUrl = 'https://cdn.ckeditor.com/4.18.0/standard-all/ckeditor.js';
@Input() editorUrl = 'https://cdn.ckeditor.com/4.19.0/standard-all/ckeditor.js';

/**
* Tag name of the editor component.
Expand Down

0 comments on commit 7c53f05

Please sign in to comment.