Skip to content

Commit

Permalink
Update tinyMCE to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
DariusIII committed Jun 30, 2019
1 parent fa7b21d commit 0a17515
Show file tree
Hide file tree
Showing 99 changed files with 3,472 additions and 3,753 deletions.
2 changes: 2 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
2019-06-30 DariusIII
* Chg: Update tinyMCE to latest version
2019-06-29 DariusIII
* Chg: Update used libraries to their latest versions
2019-06-13 DariusIII
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"devDependencies": {
"axios": "^0.19",
"cross-env": "^5.2.0",
"jquery": "^3.4",
"jquery": "^3.4.1",
"laravel-mix": "^4.0.16",
"laravel-mix-purgecss": "^4.1.0",
"lodash": "^4.17.11",
"popper.js": "^1.15.0",
"prettier": "^1.18.0",
"prettier": "^1.18.2",
"vue": "^2.6.10"
},
"dependencies": {
Expand All @@ -35,7 +35,7 @@
"icheck": "^1.0.2",
"jquery-colorbox": "^1.6.4",
"jquery-goup": "^1.1.3",
"jquery-migrate": "^3.0.1",
"jquery-migrate": "^3.1.0",
"jquery-multifile": "^2.2.2",
"jquery-slimscroll": "^1.3.8",
"jquery.nicescroll": "^3.7.6",
Expand All @@ -44,6 +44,6 @@
"normalize.css": "^8.0.1",
"pace-js": "^1.0.2",
"pnotify": "^4.0.0",
"tinymce": "^5.0.7"
"tinymce": "^5.0.9"
}
}
2 changes: 1 addition & 1 deletion public/assets/js/all-js.js

Large diffs are not rendered by default.

26 changes: 12 additions & 14 deletions public/assets/js/plugins/advlist/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.7 (2019-06-05)
* Version: 5.0.9 (2019-06-26)
*/
(function () {
var advlist = (function () {
'use strict';

var global = tinymce.util.Tools.resolve('tinymce.PluginManager');
Expand Down Expand Up @@ -298,20 +297,19 @@ var advlist = (function () {
};
var Buttons = { register: register$1 };

global.add('advlist', function (editor) {
var hasPlugin = function (editor, plugin) {
var plugins = editor.settings.plugins ? editor.settings.plugins : '';
return global$1.inArray(plugins.split(/[ ,]/), plugin) !== -1;
};
if (hasPlugin(editor, 'lists')) {
Buttons.register(editor);
Commands.register(editor);
}
});
function Plugin () {
global.add('advlist', function (editor) {
var hasPlugin = function (editor, plugin) {
var plugins = editor.settings.plugins ? editor.settings.plugins : '';
return global$1.inArray(plugins.split(/[ ,]/), plugin) !== -1;
};
if (hasPlugin(editor, 'lists')) {
Buttons.register(editor);
Commands.register(editor);
}
});
}

return Plugin;
Plugin();

}());
})();
4 changes: 2 additions & 2 deletions public/assets/js/plugins/advlist/plugin.min.js

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

16 changes: 7 additions & 9 deletions public/assets/js/plugins/anchor/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.7 (2019-06-05)
* Version: 5.0.9 (2019-06-26)
*/
(function () {
var anchor = (function () {
'use strict';

var global = tinymce.util.Tools.resolve('tinymce.PluginManager');
Expand Down Expand Up @@ -133,15 +132,14 @@ var anchor = (function () {
};
var Buttons = { register: register$1 };

global.add('anchor', function (editor) {
FilterContent.setup(editor);
Commands.register(editor);
Buttons.register(editor);
});
function Plugin () {
global.add('anchor', function (editor) {
FilterContent.setup(editor);
Commands.register(editor);
Buttons.register(editor);
});
}

return Plugin;
Plugin();

}());
})();
4 changes: 2 additions & 2 deletions public/assets/js/plugins/anchor/plugin.min.js

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

12 changes: 5 additions & 7 deletions public/assets/js/plugins/autolink/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.7 (2019-06-05)
* Version: 5.0.9 (2019-06-26)
*/
(function () {
var autolink = (function () {
'use strict';

var global = tinymce.util.Tools.resolve('tinymce.PluginManager');
Expand Down Expand Up @@ -176,13 +175,12 @@ var autolink = (function () {
};
var Keys = { setup: setup };

global.add('autolink', function (editor) {
Keys.setup(editor);
});
function Plugin () {
global.add('autolink', function (editor) {
Keys.setup(editor);
});
}

return Plugin;
Plugin();

}());
})();
4 changes: 2 additions & 2 deletions public/assets/js/plugins/autolink/plugin.min.js

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

Loading

0 comments on commit 0a17515

Please sign in to comment.