mirror of
https://github.com/documize/community.git
synced 2025-08-04 21:15:24 +02:00
Update TinyMCE editor to v4.7.6 release
Fixes issue with double scroll bar and subsequent position of inline editing toolbar.
This commit is contained in:
parent
f967949513
commit
0f3de51ad5
156 changed files with 6555 additions and 69987 deletions
|
@ -1,87 +0,0 @@
|
|||
(function () {
|
||||
var emoticons = (function () {
|
||||
'use strict';
|
||||
|
||||
var PluginManager = tinymce.util.Tools.resolve('tinymce.PluginManager');
|
||||
|
||||
var Tools = tinymce.util.Tools.resolve('tinymce.util.Tools');
|
||||
|
||||
var emoticons = [
|
||||
[
|
||||
'cool',
|
||||
'cry',
|
||||
'embarassed',
|
||||
'foot-in-mouth'
|
||||
],
|
||||
[
|
||||
'frown',
|
||||
'innocent',
|
||||
'kiss',
|
||||
'laughing'
|
||||
],
|
||||
[
|
||||
'money-mouth',
|
||||
'sealed',
|
||||
'smile',
|
||||
'surprised'
|
||||
],
|
||||
[
|
||||
'tongue-out',
|
||||
'undecided',
|
||||
'wink',
|
||||
'yell'
|
||||
]
|
||||
];
|
||||
var getHtml = function (pluginUrl) {
|
||||
var emoticonsHtml;
|
||||
emoticonsHtml = '<table role="list" class="mce-grid">';
|
||||
Tools.each(emoticons, function (row) {
|
||||
emoticonsHtml += '<tr>';
|
||||
Tools.each(row, function (icon) {
|
||||
var emoticonUrl = pluginUrl + '/img/smiley-' + icon + '.gif';
|
||||
emoticonsHtml += '<td><a href="#" data-mce-url="' + emoticonUrl + '" data-mce-alt="' + icon + '" tabindex="-1" ' + 'role="option" aria-label="' + icon + '"><img src="' + emoticonUrl + '" style="width: 18px; height: 18px" role="presentation" /></a></td>';
|
||||
});
|
||||
emoticonsHtml += '</tr>';
|
||||
});
|
||||
emoticonsHtml += '</table>';
|
||||
return emoticonsHtml;
|
||||
};
|
||||
var $_ekz9eoa8jcun3xpf = { getHtml: getHtml };
|
||||
|
||||
var insertEmoticon = function (editor, src, alt) {
|
||||
editor.insertContent(editor.dom.createHTML('img', {
|
||||
src: src,
|
||||
alt: alt
|
||||
}));
|
||||
};
|
||||
var register = function (editor, pluginUrl) {
|
||||
var panelHtml = $_ekz9eoa8jcun3xpf.getHtml(pluginUrl);
|
||||
editor.addButton('emoticons', {
|
||||
type: 'panelbutton',
|
||||
panel: {
|
||||
role: 'application',
|
||||
autohide: true,
|
||||
html: panelHtml,
|
||||
onclick: function (e) {
|
||||
var linkElm = editor.dom.getParent(e.target, 'a');
|
||||
if (linkElm) {
|
||||
insertEmoticon(editor, linkElm.getAttribute('data-mce-url'), linkElm.getAttribute('data-mce-alt'));
|
||||
this.hide();
|
||||
}
|
||||
}
|
||||
},
|
||||
tooltip: 'Emoticons'
|
||||
});
|
||||
};
|
||||
var $_7calofa7jcun3xpb = { register: register };
|
||||
|
||||
PluginManager.add('emoticons', function (editor, pluginUrl) {
|
||||
$_7calofa7jcun3xpb.register(editor, pluginUrl);
|
||||
});
|
||||
var Plugin = function () {
|
||||
};
|
||||
|
||||
return Plugin;
|
||||
|
||||
}());
|
||||
})()
|
0
gui/public/tinymce/plugins/emoticons/plugin.min.js
vendored
Normal file → Executable file
0
gui/public/tinymce/plugins/emoticons/plugin.min.js
vendored
Normal file → Executable file
Loading…
Add table
Add a link
Reference in a new issue