Skip to content

Commit

Permalink
Update to TinyMCE 6.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Oct 25, 2023
1 parent 3d52ea3 commit e6d28e6
Show file tree
Hide file tree
Showing 35 changed files with 44 additions and 41 deletions.
9 changes: 6 additions & 3 deletions app/assets/source/tinymce/tinymce.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* TinyMCE version 6.7.1 (2023-10-19)
* TinyMCE version 6.7.2 (2023-10-25)
*/

(function () {
Expand Down Expand Up @@ -3820,6 +3820,9 @@
if (isNonNullable(originalEvent.composedPath)) {
event.composedPath = () => originalEvent.composedPath();
}
if (isNonNullable(originalEvent.getModifierState)) {
event.getModifierState = keyArg => originalEvent.getModifierState(keyArg);
}
return event;
};
const normalize$3 = (type, originalEvent, fallbackTarget, data) => {
Expand Down Expand Up @@ -30872,8 +30875,8 @@
documentBaseURL: null,
suffix: null,
majorVersion: '6',
minorVersion: '7.1',
releaseDate: '2023-10-19',
minorVersion: '7.2',
releaseDate: '2023-10-25',
i18n: I18n,
activeEditor: null,
focusedEditor: null,
Expand Down
4 changes: 2 additions & 2 deletions lib/tinymce/rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module TinyMCE
module Rails
VERSION = "6.7.1"
TINYMCE_VERSION = "6.7.1"
VERSION = "6.7.2"
TINYMCE_VERSION = "6.7.2"
end
end
2 changes: 1 addition & 1 deletion vendor/assets/javascripts/tinymce/models/dom/model.js

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e6d28e6

Please sign in to comment.