Skip to content

Commit

Permalink
CKEditor standard build was used instead of the previous full-all
Browse files Browse the repository at this point in the history
…, switch back to `full-all`
  • Loading branch information
chrispelzer committed Jul 28, 2022
1 parent bf4bb3d commit 586d2ee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "waynestate/nova-ckeditor4-field",
"version": "1.1.0",
"version": "1.1.1",
"description": "This nova package allows you to use CKEditor 4 for text areas.",
"keywords": [
"laravel",
Expand Down
2 changes: 1 addition & 1 deletion config/ckeditor-field.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@
| CKEditor 4 is only supported. This will not work with CKEditor 5
|
*/
'ckeditor_url' => 'https://cdn.ckeditor.com/4.19.1/standard/ckeditor.js',
'ckeditor_url' => 'https://cdn.ckeditor.com/4.19.1/full-all/ckeditor.js',
];
2 changes: 1 addition & 1 deletion resources/js/components/CKEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default {
},
editorUrl: {
type: String,
default: 'https://cdn.ckeditor.com/4.19.1/standard-all/ckeditor.js'
default: 'https://cdn.ckeditor.com/4.19.1/full-all/ckeditor.js'
},
config: {
type: Object,
Expand Down
2 changes: 1 addition & 1 deletion src/CKEditor4FieldServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function boot()
});

Nova::serving(function (ServingNova $event) {
Nova::script('ckeditor', config('nova.ckeditor-field.ckeditor_url', 'https://cdn.ckeditor.com/4.19.1/standard/ckeditor.js'));
Nova::script('ckeditor', config('nova.ckeditor-field.ckeditor_url', 'https://cdn.ckeditor.com/4.19.1/full-all/ckeditor.js'));

Nova::script('nova-ckeditor', __DIR__ . '/../dist/js/field.js');
// Nova::style('nova-ckeditor', __DIR__ . '/../dist/css/field.css');
Expand Down

0 comments on commit 586d2ee

Please sign in to comment.