X-Git-Url: https://scm.cri.mines-paristech.fr/git/ckeditor.git/blobdiff_plain/45e45b704882d7f41ca8f80b2ab69ab6a6a8e4b7..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 7181a9e..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(){ @@ -28,6 +28,9 @@ CKEDITOR.plugins.add( 'plinn_image', { init : function( editor ) { + /* Add listener on getData event to compute images + src attributes before saving data. + */ editor.on('instanceReady', function(){ editor.on('getData', function(evt) { @@ -39,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); } });