Skip to content

Commit fb87672

Browse files
committed
Update to TinyMCE 8.3.2
1 parent f94d390 commit fb87672

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

app/assets/source/tinymce/tinymce.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* TinyMCE version 8.3.1 (2025-12-17)
2+
* TinyMCE version 8.3.2 (2026-01-14)
33
*/
44

55
(function () {
@@ -22713,7 +22713,7 @@
2271322713
// We need to create a temporary document instead of using the global document since
2271422714
// innerHTML on a detached element will still make http requests to the images
2271522715
const lazyTempDocument = cached(() => document.implementation.createHTMLDocument('undo'));
22716-
const hasIframes = (body) => body.querySelector('iframe') !== null;
22716+
const shouldBeFragmented = (body) => body.querySelector(`iframe, ${ucVideoNodeName}`) !== null;
2271722717
const createFragmentedLevel = (fragments) => {
2271822718
return {
2271922719
type: 'fragmented',
@@ -22735,7 +22735,7 @@
2273522735
const createFromEditor = (editor) => {
2273622736
const tempAttrs = editor.serializer.getTempAttrs();
2273722737
const body = trim$1(editor.getBody(), tempAttrs);
22738-
return hasIframes(body) ? createFragmentedLevel(read$2(body, true)) : createCompleteLevel(trim$2(body.innerHTML));
22738+
return shouldBeFragmented(body) ? createFragmentedLevel(read$2(body, true)) : createCompleteLevel(trim$2(body.innerHTML));
2273922739
};
2274022740
const applyToEditor = (editor, level, before) => {
2274122741
const bookmark = before ? level.beforeBookmark : level.bookmark;
@@ -40581,14 +40581,14 @@
4058140581
* @property minorVersion
4058240582
* @type String
4058340583
*/
40584-
minorVersion: '3.1',
40584+
minorVersion: '3.2',
4058540585
/**
4058640586
* Release date of TinyMCE build.
4058740587
*
4058840588
* @property releaseDate
4058940589
* @type String
4059040590
*/
40591-
releaseDate: '2025-12-17',
40591+
releaseDate: '2026-01-14',
4059240592
/**
4059340593
* Collection of language pack data.
4059440594
*

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 = "8.3.1"
4-
TINYMCE_VERSION = "8.3.1"
3+
VERSION = "8.3.2"
4+
TINYMCE_VERSION = "8.3.2"
55
end
66
end

vendor/assets/javascripts/tinymce/tinymce.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)