mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 16:58:07 +08:00
19 lines
256 B
JavaScript
19 lines
256 B
JavaScript
|
|
||
|
CKEDITOR.plugins.add('signature', {
|
||
|
init: function(editor) {
|
||
|
editor.addCommand('insertSignature', {
|
||
|
exec: function (editor) {
|
||
|
window.console.log(arguments);
|
||
|
if ('wysiwyg' === editor.mode)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
});
|