Skip to content

Commit

Permalink
Update to TinyMCE 6.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Nov 30, 2023
1 parent 4556e86 commit 9a65794
Show file tree
Hide file tree
Showing 47 changed files with 53 additions and 53 deletions.
8 changes: 4 additions & 4 deletions app/assets/source/tinymce/tinymce.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* TinyMCE version 6.8.0 (2023-11-22)
* TinyMCE version 6.8.1 (2023-11-29)
*/

(function () {
Expand Down Expand Up @@ -3556,7 +3556,7 @@
return false;
};
const isBlock = name => has$2(getBlockElements(), name);
const isInline = name => isValid(name) && !isBlock(name);
const isInline = name => !startsWith(name, '#') && isValid(name) && !isBlock(name);
const isWrapper = name => has$2(getWrapBlockElements(), name) || isInline(name);
const getCustomElements = constant(customElementsMap);
return {
Expand Down Expand Up @@ -31140,8 +31140,8 @@
documentBaseURL: null,
suffix: null,
majorVersion: '6',
minorVersion: '8.0',
releaseDate: '2023-11-22',
minorVersion: '8.1',
releaseDate: '2023-11-29',
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.8.0"
TINYMCE_VERSION = "6.8.0"
VERSION = "6.8.1"
TINYMCE_VERSION = "6.8.1"
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 9a65794

Please sign in to comment.