Skip to content

Commit

Permalink
Hide security warning message by default
Browse files Browse the repository at this point in the history
  • Loading branch information
galetahub committed Jul 17, 2024
1 parent 6a4f526 commit 41b2ce6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Ckeditor changelog

## Ckeditor 5.1.3 (unreleased)
## Ckeditor 5.1.3

* Rename app/assets/config/manifest.js to app/assets/config/ckeditor_manifest.js to fix issue #938
* Rename app/assets/config/manifest.js to app/assets/config/ckeditor_manifest.js (issue #938)
* Set config.versionCheck = false; by default to hide security notification (issue #933)

## Ckeditor 5.1.2

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ckeditor (5.1.2)
ckeditor (5.1.3)
orm_adapter (~> 0.5.0)

GEM
Expand Down
3 changes: 2 additions & 1 deletion app/assets/javascripts/ckeditor/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ CKEDITOR.editorConfig = function( config )
config.filebrowserUploadUrl = "/ckeditor/attachment_files";

config.allowedContent = true;
config.filebrowserUploadMethod = 'form';
config.filebrowserUploadMethod = 'form';
config.versionCheck = false;

// Toolbar groups configuration.
config.toolbar = [
Expand Down

0 comments on commit 41b2ce6

Please sign in to comment.