Skip to content

Commit

Permalink
Added version 4.9.9 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ephox committed Mar 25, 2020
1 parent 912df2b commit f3e1d5c
Show file tree
Hide file tree
Showing 9 changed files with 91 additions and 16 deletions.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 4.9.9 (2020-03-25)
Fixed the table selection not functioning correctly in Microsoft Edge 44 or higher #TINY-3862
Fixed the table resize handles not functioning correctly in Microsoft Edge 44 or higher #TINY-4160
Fixed the `forced_root_block_attrs` setting not applying attributes to new blocks consistently #TINY-4564
Fixed the editor failing to initialize if a script tag was used inside an SVG #TINY-4087
Version 4.9.8 (2020-01-28)
Fixed the `mobile` theme failing to load due to a bundling issue #TINY-4613
Fixed security issue related to parsing HTML comments and CDATA #TINY-4544
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinymce/tinymce",
"version": "4.9.8",
"version": "4.9.9",
"description": "Web based JavaScript HTML WYSIWYG editor control.",
"license": [
"LGPL-2.1-only"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinymce",
"version": "4.9.8",
"version": "4.9.9",
"repository": {
"type": "git",
"url": "https://github.com/tinymce/tinymce-dist.git"
Expand Down
3 changes: 3 additions & 0 deletions plugins/table/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -8757,6 +8757,9 @@ var table = (function (domGlobals) {
if (raw.buttons === undefined) {
return true;
}
if (global$2.ie && global$2.ie >= 12 && raw.buttons === 0) {
return true;
}
return (raw.buttons & 1) !== 0;
};
var mouseDown = function (e) {
Expand Down
2 changes: 1 addition & 1 deletion plugins/table/plugin.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion skins/lightgray/content.inline.min.css

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

2 changes: 1 addition & 1 deletion skins/lightgray/content.min.css

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

Loading

0 comments on commit f3e1d5c

Please sign in to comment.