{ name: 'basicstyles', items : [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] },\r
{ name: 'paragraph', items : [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'] },\r
{ name: 'links', items : [ 'Link', 'Unlink', 'Anchor' ] },\r
- { name: 'insert', items : [ 'Image', 'Flash', 'Table', 'HorizontalRule', 'SpecialChar', 'PageBreak'] },\r
+ { name: 'insert', items : [ 'PlinnImage', 'Image', 'Flash', 'Table', 'HorizontalRule', 'SpecialChar', 'PageBreak'] },\r
];\r
\r
// context menu\r
}
);
});
+
+ var command = editor.addCommand('plinn_image',
+ {
+ exec : function(editor) {
+ alert('Bonjour la France !');
+ }
+ });
+
+ editor.ui.addButton('PlinnImage',
+ {
+ label : editor.lang.common.image,
+ icon : this.path + 'dialog/plinn_image.gif',
+ command : 'plinn_image'
+ });
+ console.log(this.path);
}
});