Skip to content

Commit

Permalink
Update tinymce and fontawesome
Browse files Browse the repository at this point in the history
  • Loading branch information
DariusIII committed Aug 7, 2019
1 parent eff9422 commit b7a914a
Show file tree
Hide file tree
Showing 100 changed files with 4,174 additions and 1,781 deletions.
1 change: 1 addition & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
2019-08-07 DariusIII
* Chg: Update tinymce and fontawesome
* Chg: Update used libraries to latest versions
2019-08-06 DariusIII
* Chg: Update invite code
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"@fancyapps/fancybox": "^3.5.7",
"@fortawesome/fontawesome-free": "^5.10.0",
"@fortawesome/fontawesome-free": "^5.10.1",
"animate.css": "^3.7.2",
"autosize": "^4.0.2",
"bootstrap": "^4.3.1",
Expand All @@ -44,6 +44,6 @@
"normalize.css": "^8.0.1",
"pace-js": "^1.0.2",
"pnotify": "^4.0.0",
"tinymce": "^5.0.12"
"tinymce": "^5.0.13"
}
}
2 changes: 1 addition & 1 deletion public/assets/css/all-css.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/assets/js/all-js.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/advlist/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion 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.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/anchor/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion 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.

6 changes: 3 additions & 3 deletions public/assets/js/plugins/autolink/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function () {
'use strict';
Expand All @@ -17,7 +17,7 @@
return editor.getParam('autolink_pattern', /^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+\-]+@)(.+)$/i);
};
var getDefaultLinkTarget = function (editor) {
return editor.getParam('default_link_target', '');
return editor.getParam('default_link_target', false);
};
var Settings = {
getAutoLinkPattern: getAutoLinkPattern,
Expand Down Expand Up @@ -136,7 +136,7 @@
bookmark = editor.selection.getBookmark();
editor.selection.setRng(rng);
editor.execCommand('createlink', false, matches[1] + matches[2]);
if (defaultLinkTarget) {
if (defaultLinkTarget !== false) {
editor.dom.setAttrib(editor.selection.getNode(), 'target', defaultLinkTarget);
}
editor.selection.moveToBookmark(bookmark);
Expand Down
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.

2 changes: 1 addition & 1 deletion public/assets/js/plugins/autoresize/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion public/assets/js/plugins/autoresize/plugin.min.js

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

2 changes: 1 addition & 1 deletion public/assets/js/plugins/autosave/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function (domGlobals) {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion public/assets/js/plugins/autosave/plugin.min.js

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

2 changes: 1 addition & 1 deletion public/assets/js/plugins/bbcode/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function () {
'use strict';
Expand Down
Loading

0 comments on commit b7a914a

Please sign in to comment.