Compiled assets
This commit is contained in:
parent
57df9016b0
commit
c3d30d2430
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 70 B |
Binary file not shown.
Before Width: | Height: | Size: 70 B |
Binary file not shown.
Before Width: | Height: | Size: 220 B |
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -20135,7 +20135,7 @@ window.tinymce = window.tinymce || {
|
||||
* For LGPL see License.txt in the project root for license information.
|
||||
* For commercial licenses see https://www.tiny.cloud/
|
||||
*
|
||||
* Version: 5.1.1 (2019-10-28)
|
||||
* Version: 5.1.4 (2019-12-11)
|
||||
*/
|
||||
(function (domGlobals) {
|
||||
'use strict';
|
||||
@ -26467,13 +26467,13 @@ window.tinymce = window.tinymce || {
|
||||
};
|
||||
var getBounds = function (_win) {
|
||||
var win = _win === undefined ? domGlobals.window : _win;
|
||||
var doc = win.document;
|
||||
var scroll = get$3(Element.fromDom(doc));
|
||||
var visualViewport = win['visualViewport'];
|
||||
if (visualViewport !== undefined) {
|
||||
return bounds(visualViewport.pageLeft, visualViewport.pageTop, visualViewport.width, visualViewport.height);
|
||||
return bounds(Math.max(visualViewport.pageLeft, scroll.left()), Math.max(visualViewport.pageTop, scroll.top()), visualViewport.width, visualViewport.height);
|
||||
} else {
|
||||
var doc = Element.fromDom(win.document);
|
||||
var html = win.document.documentElement;
|
||||
var scroll = get$3(doc);
|
||||
var html = doc.documentElement;
|
||||
var width = html.clientWidth;
|
||||
var height = html.clientHeight;
|
||||
return bounds(scroll.left(), scroll.top(), width, height);
|
||||
@ -31062,7 +31062,7 @@ window.tinymce = window.tinymce || {
|
||||
value: value
|
||||
});
|
||||
};
|
||||
tokenRegExp = new RegExp('<(?:' + '(?:!--([\\w\\W]*?)-->)|' + '(?:!\\[CDATA\\[([\\w\\W]*?)\\]\\]>)|' + '(?:!DOCTYPE([\\w\\W]*?)>)|' + '(?:\\?([^\\s\\/<>]+) ?([\\w\\W]*?)[?/]>)|' + '(?:\\/([A-Za-z][A-Za-z0-9\\-_\\:\\.]*)>)|' + '(?:([A-Za-z][A-Za-z0-9\\-_\\:\\.]*)((?:\\s+[^"\'>]+(?:(?:"[^"]*")|(?:\'[^\']*\')|[^>]*))*|\\/|\\s+)>)' + ')', 'g');
|
||||
tokenRegExp = new RegExp('<(?:' + '(?:!--([\\w\\W]*?)--!?>)|' + '(?:!\\[CDATA\\[([\\w\\W]*?)\\]\\]>)|' + '(?:!DOCTYPE([\\w\\W]*?)>)|' + '(?:\\?([^\\s\\/<>]+) ?([\\w\\W]*?)[?/]>)|' + '(?:\\/([A-Za-z][A-Za-z0-9\\-_\\:\\.]*)>)|' + '(?:([A-Za-z][A-Za-z0-9\\-_\\:\\.]*)((?:\\s+[^"\'>]+(?:(?:"[^"]*")|(?:\'[^\']*\')|[^>]*))*|\\/|\\s+)>)' + ')', 'g');
|
||||
attrRegExp = /([\w:\-]+)(?:\s*=\s*(?:(?:\"((?:[^\"])*)\")|(?:\'((?:[^\'])*)\')|([^>\s]+)))?/g;
|
||||
shortEndedElements = schema.getShortEndedElements();
|
||||
selfClosing = settings.self_closing_elements || schema.getSelfClosingElements();
|
||||
@ -32451,6 +32451,7 @@ window.tinymce = window.tinymce || {
|
||||
var deviceDetection = detect$3().deviceType;
|
||||
var isTouch = deviceDetection.isTouch();
|
||||
var isPhone = deviceDetection.isPhone();
|
||||
var isTablet = deviceDetection.isTablet();
|
||||
var legacyMobilePlugins = [
|
||||
'lists',
|
||||
'autolink',
|
||||
@ -32528,7 +32529,7 @@ window.tinymce = window.tinymce || {
|
||||
var getDefaultMobileSettings = function (isPhone) {
|
||||
var defaultMobileSettings = {
|
||||
resize: false,
|
||||
toolbar_drawer: false,
|
||||
toolbar_drawer: 'scrolling',
|
||||
toolbar_sticky: false
|
||||
};
|
||||
var defaultPhoneSettings = { menubar: false };
|
||||
@ -32545,30 +32546,30 @@ window.tinymce = window.tinymce || {
|
||||
var combinePlugins = function (forcedPlugins, plugins) {
|
||||
return [].concat(normalizePlugins(forcedPlugins)).concat(normalizePlugins(plugins));
|
||||
};
|
||||
var processPlugins = function (isTouchDevice, sectionResult, defaultOverrideSettings, settings) {
|
||||
var processPlugins = function (isMobileDevice, sectionResult, defaultOverrideSettings, settings) {
|
||||
var forcedPlugins = normalizePlugins(defaultOverrideSettings.forced_plugins);
|
||||
var desktopPlugins = normalizePlugins(settings.plugins);
|
||||
var mobileConfig = getSectionConfig(sectionResult, 'mobile');
|
||||
var mobilePlugins = mobileConfig.plugins ? normalizePlugins(mobileConfig.plugins) : desktopPlugins;
|
||||
var platformPlugins = isTouchDevice && isSectionTheme(sectionResult, 'mobile', 'mobile') ? filterLegacyMobilePlugins(mobilePlugins) : isTouchDevice && hasSection(sectionResult, 'mobile') ? mobilePlugins : desktopPlugins;
|
||||
var platformPlugins = isMobileDevice && isSectionTheme(sectionResult, 'mobile', 'mobile') ? filterLegacyMobilePlugins(mobilePlugins) : isMobileDevice && hasSection(sectionResult, 'mobile') ? mobilePlugins : desktopPlugins;
|
||||
var combinedPlugins = combinePlugins(forcedPlugins, platformPlugins);
|
||||
return Tools.extend(settings, { plugins: combinedPlugins.join(' ') });
|
||||
};
|
||||
var isOnMobile = function (isTouchDevice, sectionResult) {
|
||||
return isTouchDevice && hasSection(sectionResult, 'mobile');
|
||||
var isOnMobile = function (isMobileDevice, sectionResult) {
|
||||
return isMobileDevice && hasSection(sectionResult, 'mobile');
|
||||
};
|
||||
var combineSettings = function (isTouchDevice, isPhone, defaultSettings, defaultOverrideSettings, settings) {
|
||||
var defaultDeviceSettings = isTouchDevice ? { mobile: getDefaultMobileSettings(isPhone) } : {};
|
||||
var combineSettings = function (isMobileDevice, isPhone, defaultSettings, defaultOverrideSettings, settings) {
|
||||
var defaultDeviceSettings = isMobileDevice ? { mobile: getDefaultMobileSettings(isPhone) } : {};
|
||||
var sectionResult = extractSections(['mobile'], deepMerge(defaultDeviceSettings, settings));
|
||||
var extendedSettings = Tools.extend(defaultSettings, defaultOverrideSettings, sectionResult.settings(), isOnMobile(isTouchDevice, sectionResult) ? getSection(sectionResult, 'mobile') : {}, {
|
||||
var extendedSettings = Tools.extend(defaultSettings, defaultOverrideSettings, sectionResult.settings(), isOnMobile(isMobileDevice, sectionResult) ? getSection(sectionResult, 'mobile') : {}, {
|
||||
validate: true,
|
||||
external_plugins: getExternalPlugins(defaultOverrideSettings, sectionResult.settings())
|
||||
});
|
||||
return processPlugins(isTouchDevice, sectionResult, defaultOverrideSettings, extendedSettings);
|
||||
return processPlugins(isMobileDevice, sectionResult, defaultOverrideSettings, extendedSettings);
|
||||
};
|
||||
var getEditorSettings = function (editor, id, documentBaseUrl, defaultOverrideSettings, settings) {
|
||||
var defaultSettings = getDefaultSettings(id, documentBaseUrl, isTouch, editor);
|
||||
return combineSettings(isTouch, isPhone, defaultSettings, defaultOverrideSettings, settings);
|
||||
return combineSettings(isPhone || isTablet, isPhone, defaultSettings, defaultOverrideSettings, settings);
|
||||
};
|
||||
var getFiltered = function (predicate, editor, name) {
|
||||
return Option.from(editor.settings[name]).filter(predicate);
|
||||
@ -42131,7 +42132,7 @@ window.tinymce = window.tinymce || {
|
||||
var isBeforeContentEditableFalseFn = forward ? isBeforeContentEditableFalse : isAfterContentEditableFalse;
|
||||
var caretPosition = getNormalizedRangeEndPoint(direction, editor.getBody(), range);
|
||||
var nextCaretPosition = InlineUtils.normalizePosition(forward, getNextPosFn(caretPosition));
|
||||
if (!nextCaretPosition) {
|
||||
if (!nextCaretPosition || !isMoveInsideSameBlock(caretPosition, nextCaretPosition)) {
|
||||
return false;
|
||||
} else if (isBeforeContentEditableFalseFn(nextCaretPosition)) {
|
||||
return deleteContentAndShowCaret(editor, range, caretPosition.getNode(), direction, forward, nextCaretPosition);
|
||||
@ -47301,8 +47302,8 @@ window.tinymce = window.tinymce || {
|
||||
suffix: null,
|
||||
$: DomQuery,
|
||||
majorVersion: '5',
|
||||
minorVersion: '1.1',
|
||||
releaseDate: '2019-10-28',
|
||||
minorVersion: '1.4',
|
||||
releaseDate: '2019-12-11',
|
||||
editors: legacyEditors,
|
||||
i18n: I18n,
|
||||
activeEditor: null,
|
||||
@ -52992,7 +52993,7 @@ exports.MarkerCluster = MarkerCluster;
|
||||
branding: false,
|
||||
language: 'fr_FR',
|
||||
selector: 'input.description',
|
||||
content_css: '/assets/application-057b12d80186388517367b4186b1d91bd32e59da43c21a96b37022c082527ec5.css',
|
||||
content_css: '/assets/application-2787d6ed87f3f83fc6325ce89dc84f7e80e3148c1224e41f9cc9e51509747d00.css',
|
||||
entity_encoding: 'raw',
|
||||
add_unload_trigger: true,
|
||||
browser_spellcheck: true,
|
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user