mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
Moving to node_modules folder to make easier to upgrade
trying to move from Bootstrap 3 to Bootstrap 5
This commit is contained in:
parent
047e363a16
commit
d4d042e041
8460 changed files with 1355889 additions and 547977 deletions
104
node_modules/tinymce/plugins/pagebreak/plugin.js
generated
vendored
Normal file
104
node_modules/tinymce/plugins/pagebreak/plugin.js
generated
vendored
Normal file
|
@ -0,0 +1,104 @@
|
|||
/**
|
||||
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||
* Licensed under the LGPL or a commercial license.
|
||||
* For LGPL see License.txt in the project root for license information.
|
||||
* For commercial licenses see https://www.tiny.cloud/
|
||||
*
|
||||
* Version: 5.10.0 (2021-10-11)
|
||||
*/
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
var global$1 = tinymce.util.Tools.resolve('tinymce.PluginManager');
|
||||
|
||||
var global = tinymce.util.Tools.resolve('tinymce.Env');
|
||||
|
||||
var getSeparatorHtml = function (editor) {
|
||||
return editor.getParam('pagebreak_separator', '<!-- pagebreak -->');
|
||||
};
|
||||
var shouldSplitBlock = function (editor) {
|
||||
return editor.getParam('pagebreak_split_block', false);
|
||||
};
|
||||
|
||||
var pageBreakClass = 'mce-pagebreak';
|
||||
var getPlaceholderHtml = function (shouldSplitBlock) {
|
||||
var html = '<img src="' + global.transparentSrc + '" class="' + pageBreakClass + '" data-mce-resize="false" data-mce-placeholder />';
|
||||
return shouldSplitBlock ? '<p>' + html + '</p>' : html;
|
||||
};
|
||||
var setup$1 = function (editor) {
|
||||
var separatorHtml = getSeparatorHtml(editor);
|
||||
var shouldSplitBlock$1 = function () {
|
||||
return shouldSplitBlock(editor);
|
||||
};
|
||||
var pageBreakSeparatorRegExp = new RegExp(separatorHtml.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g, function (a) {
|
||||
return '\\' + a;
|
||||
}), 'gi');
|
||||
editor.on('BeforeSetContent', function (e) {
|
||||
e.content = e.content.replace(pageBreakSeparatorRegExp, getPlaceholderHtml(shouldSplitBlock$1()));
|
||||
});
|
||||
editor.on('PreInit', function () {
|
||||
editor.serializer.addNodeFilter('img', function (nodes) {
|
||||
var i = nodes.length, node, className;
|
||||
while (i--) {
|
||||
node = nodes[i];
|
||||
className = node.attr('class');
|
||||
if (className && className.indexOf(pageBreakClass) !== -1) {
|
||||
var parentNode = node.parent;
|
||||
if (editor.schema.getBlockElements()[parentNode.name] && shouldSplitBlock$1()) {
|
||||
parentNode.type = 3;
|
||||
parentNode.value = separatorHtml;
|
||||
parentNode.raw = true;
|
||||
node.remove();
|
||||
continue;
|
||||
}
|
||||
node.type = 3;
|
||||
node.value = separatorHtml;
|
||||
node.raw = true;
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
var register$1 = function (editor) {
|
||||
editor.addCommand('mcePageBreak', function () {
|
||||
editor.insertContent(getPlaceholderHtml(shouldSplitBlock(editor)));
|
||||
});
|
||||
};
|
||||
|
||||
var setup = function (editor) {
|
||||
editor.on('ResolveName', function (e) {
|
||||
if (e.target.nodeName === 'IMG' && editor.dom.hasClass(e.target, pageBreakClass)) {
|
||||
e.name = 'pagebreak';
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
var register = function (editor) {
|
||||
var onAction = function () {
|
||||
return editor.execCommand('mcePageBreak');
|
||||
};
|
||||
editor.ui.registry.addButton('pagebreak', {
|
||||
icon: 'page-break',
|
||||
tooltip: 'Page break',
|
||||
onAction: onAction
|
||||
});
|
||||
editor.ui.registry.addMenuItem('pagebreak', {
|
||||
text: 'Page break',
|
||||
icon: 'page-break',
|
||||
onAction: onAction
|
||||
});
|
||||
};
|
||||
|
||||
function Plugin () {
|
||||
global$1.add('pagebreak', function (editor) {
|
||||
register$1(editor);
|
||||
register(editor);
|
||||
setup$1(editor);
|
||||
setup(editor);
|
||||
});
|
||||
}
|
||||
|
||||
Plugin();
|
||||
|
||||
}());
|
Loading…
Add table
Add a link
Reference in a new issue