-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.js
65 lines (63 loc) · 2.86 KB
/
plugin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*!
# -- BEGIN LICENSE BLOCK ----------------------------------
#
# This file is part of tinyMCE.
# YouTube for tinyMCE
# Copyright (C) 2011 - 2019 Gerits Aurelien <aurelien[at]magix-cms[dot]com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# -- END LICENSE BLOCK -----------------------------------
*/
(function () {
var loremipsum = (function () {
'use strict';
tinymce.PluginManager.add("loremipsum", function (editor, url) {
function li(){
return 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.';
}
/*
Add a custom icon to TinyMCE
*/
editor.ui.registry.addIcon('lorem-ipsum', '<svg width="24" height="24"><use xlink:href="'+url+'/img/lorem-ipsum.svg#loremipsum"></use></svg>');
// Add a button into the toolbar
editor.ui.registry.addButton('loremipsum', {
icon: 'lorem-ipsum',
title: 'loremipsum',
tooltip: 'loremipsum',
onAction: () => {
editor.insertContent(li());
}
});
// Add a button into the menu bar
editor.ui.registry.addMenuItem('loremipsum', {
icon: 'lorem-ipsum',
title: 'loremipsum',
text : 'loremipsum',
context: 'insert',
onAction: () => {
editor.insertContent(li());
}
});
// Return details to be displayed in TinyMCE's "Help" plugin, if you use it
// This is optional.
return {
getMetadata: function () {
return {
name: "Loremipsum Plugin",
url: "https://github.com/gtraxx/tinymce-plugin-youtube"
};
}
};
});
}());
})();