Skip to content

Commit e6d28e6

Browse files
committed
Update to TinyMCE 6.7.2
1 parent 3d52ea3 commit e6d28e6

File tree

35 files changed

+44
-41
lines changed

35 files changed

+44
-41
lines changed

app/assets/source/tinymce/tinymce.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* TinyMCE version 6.7.1 (2023-10-19)
2+
* TinyMCE version 6.7.2 (2023-10-25)
33
*/
44

55
(function () {
@@ -3820,6 +3820,9 @@
38203820
if (isNonNullable(originalEvent.composedPath)) {
38213821
event.composedPath = () => originalEvent.composedPath();
38223822
}
3823+
if (isNonNullable(originalEvent.getModifierState)) {
3824+
event.getModifierState = keyArg => originalEvent.getModifierState(keyArg);
3825+
}
38233826
return event;
38243827
};
38253828
const normalize$3 = (type, originalEvent, fallbackTarget, data) => {
@@ -30872,8 +30875,8 @@
3087230875
documentBaseURL: null,
3087330876
suffix: null,
3087430877
majorVersion: '6',
30875-
minorVersion: '7.1',
30876-
releaseDate: '2023-10-19',
30878+
minorVersion: '7.2',
30879+
releaseDate: '2023-10-25',
3087730880
i18n: I18n,
3087830881
activeEditor: null,
3087930882
focusedEditor: null,

lib/tinymce/rails/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module TinyMCE
22
module Rails
3-
VERSION = "6.7.1"
4-
TINYMCE_VERSION = "6.7.1"
3+
VERSION = "6.7.2"
4+
TINYMCE_VERSION = "6.7.2"
55
end
66
end

vendor/assets/javascripts/tinymce/models/dom/model.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/assets/javascripts/tinymce/plugins/accordion/plugin.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/assets/javascripts/tinymce/plugins/advlist/plugin.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)