Update package.json and tinymce to version 4.9.2

This commit is contained in:
DariusIII
2018-12-17 22:40:20 +01:00
parent f863f2d8cc
commit 11e23c1780
15 changed files with 32 additions and 13 deletions
+1
View File
@@ -1,4 +1,5 @@
2018-12-17 DariusIII
* Chg: Update package.json and tinymce to version 4.9.2
* Chg: Update barryvdh/reflection-docblock to version 2.0.6 and laravel/framework to version 5.7.18
* Chg: Update opis/closure to version 3.1.2
* Chg: Update admin area template files
+2 -2
View File
@@ -13,7 +13,7 @@
"axios": "^0.18",
"cross-env": "^5.2.0",
"jquery": "^3.3",
"laravel-mix": "^4.0.8",
"laravel-mix": "^4.0.12",
"lodash": "^4.17.11",
"popper.js": "^1.14.6",
"vue": "^2.5.21"
@@ -41,6 +41,6 @@
"normalize.css": "^8.0.1",
"pace-js": "^1.0.2",
"pnotify": "^4.0.0-beta.2",
"tinymce": "^4.9.1"
"tinymce": "^4.9.2"
}
}
File diff suppressed because one or more lines are too long
-1
View File
@@ -1389,7 +1389,6 @@ var lists = (function () {
var assimilateEntry = function (adherent, source) {
adherent.listType = source.listType;
adherent.listAttributes = merge({}, source.listAttributes);
adherent.itemAttributes = merge({}, source.itemAttributes);
};
var normalizeShallow = function (outline, entry) {
var matchingEntryDepth = entry.depth - 1;
File diff suppressed because one or more lines are too long
@@ -474,7 +474,9 @@ var spellchecker = (function () {
checkIfFinished(editor, startedState, textMatcherState);
};
var finish = function (editor, startedState, textMatcherState) {
var bookmark = editor.selection.getBookmark();
getTextMatcher(editor, textMatcherState).reset();
editor.selection.moveToBookmark(bookmark);
textMatcherState.set(null);
if (startedState.get()) {
startedState.set(false);
@@ -528,6 +530,7 @@ var spellchecker = (function () {
suggestions: suggestions,
hasDictionarySupport: hasDictionarySupport
});
var bookmark = editor.selection.getBookmark();
getTextMatcher(editor, textMatcherState).find(Settings.getSpellcheckerWordcharPattern(editor)).filter(function (match) {
return !!suggestions[match.text];
}).wrap(function (match) {
@@ -537,6 +540,7 @@ var spellchecker = (function () {
'data-mce-word': match.text
});
});
editor.selection.moveToBookmark(bookmark);
startedState.set(true);
Events.fireSpellcheckStart(editor);
};
File diff suppressed because one or more lines are too long
+3
View File
@@ -7112,6 +7112,7 @@ var table = (function () {
var start = getStart$1(selection);
return defaultView(start);
};
var domRange = type$2.domRange;
var relative$1 = type$2.relative;
var exact = type$2.exact;
@@ -7269,6 +7270,8 @@ var table = (function () {
}
});
};
var ltr$2 = adt$1.ltr;
var rtl$2 = adt$1.rtl;
var searchForPoint = function (rectForOffset, x, y, maxX, length) {
if (length === 0)
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -8142,7 +8142,7 @@ var inlite = (function () {
}
};
var setupHideFloatPanels = function (editor) {
editor.on('mousedown', function () {
editor.on('mousedown progressstate', function () {
FloatPanel.hideAll();
});
};
File diff suppressed because one or more lines are too long
+13 -1
View File
@@ -1375,6 +1375,7 @@ var mobile = (function () {
var strict = adt.strict;
var asOption = adt.asOption;
var defaultedThunk = adt.defaultedThunk;
var asDefaultedOptionThunk = adt.asDefaultedOptionThunk;
var mergeWithThunk = adt.mergeWithThunk;
var comparison = Adt.generate([
@@ -4309,6 +4310,13 @@ var mobile = (function () {
fDefaults,
fOverrides
]);
var externalSpec = objOf([
fFactory,
fSchema,
fName,
fDefaults,
fOverrides
]);
var optionalSpec = objOf([
fFactory,
fSchema,
@@ -4342,6 +4350,7 @@ var mobile = (function () {
};
};
var required = convert(adt$3.required, requiredSpec);
var external = convert(adt$3.external, externalSpec);
var optional = convert(adt$3.optional, optionalSpec);
var group = convert(adt$3.group, groupSpec);
var original = constant('entirety');
@@ -12604,7 +12613,10 @@ var mobile = (function () {
return {
getNotificationManagerImpl: function () {
return {
open: identity,
open: constant({
progressBar: { value: noop },
close: noop
}),
close: noop,
reposition: noop,
getArgs: identity
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -7984,7 +7984,7 @@ var modern = (function () {
}
};
var setupHideFloatPanels = function (editor) {
editor.on('mousedown', function () {
editor.on('mousedown progressstate', function () {
FloatPanel.hideAll();
});
};
File diff suppressed because one or more lines are too long