-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.js
59 lines (39 loc) · 1.58 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
(function () {
CKEDITOR.plugins.add('bootstrap_tooltip', {
lang: 'en,ru',
requires: 'widget,dialog',
icons: 'bootstraptooltip',
init: function (editor) {
var lang = editor.lang.bootstrap_tooltip;
CKEDITOR.dialog.add('bootstrap_tooltip', this.path + 'dialogs/bootstrap_tooltip.js');
// Add widget
editor.ui.addButton('bootstrap_tooltip', {
label: "Add Tooltip",
command: 'bootstrap_tooltip',
icon: this.path + 'icons/tooltip.png'
});
editor.widgets.add('bootstrap_tooltip', {
dialog: 'bootstrap_tooltip',
init: function () {
},
template: '<span href="#" class="tipper" data-toggle="tooltip" data-placement="top" title>' + '<span class="text"></span>' + '</span>',
data: function () {
var $el = jQuery(this.element.$);
console.log($el);
if (this.data.tooltip) {
$el.attr('title', this.data.tooltip);
}
if (this.data.text) {
jQuery('.text', $el).text(this.data.text);
}
},
allowedContent: 'p',
requiredContent: 'span.tipper',
upcast: function (element) {
return element.name == 'span.tipper';
}
});
}
}
);
})();