X-Git-Url: https://scm.cri.mines-paristech.fr/git/ckeditor.git/blobdiff_plain/7c4f7ce0c90fd8b1413f4cc46eb5c84730d61e56..4bd080d5604dd3d2f4b172f061903f50df295234:/skins/ckeditor/plugins/plinn_image/plugin.js diff --git a/skins/ckeditor/plugins/plinn_image/plugin.js b/skins/ckeditor/plugins/plinn_image/plugin.js index 7f8f3f2..442a2be 100644 --- a/skins/ckeditor/plugins/plinn_image/plugin.js +++ b/skins/ckeditor/plugins/plinn_image/plugin.js @@ -1,4 +1,4 @@ -/* © Benoît Pin, MINES ParisTech */ +/* © 2011 Benoît Pin, MINES ParisTech */ (function(){ @@ -42,6 +42,21 @@ CKEDITOR.plugins.add( 'plinn_image', } ); }); + + 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); } });