X-Git-Url: https://scm.cri.mines-paristech.fr/git/ckeditor.git/blobdiff_plain/2bfd716a52b02cffa159523c2911fbbf519772c2..dd55f919fd97b1bdedb9b1465db672a11f916d2c:/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 ffb96fe..ebce6a9 100644 --- a/skins/ckeditor/plugins/plinn_image/plugin.js +++ b/skins/ckeditor/plugins/plinn_image/plugin.js @@ -59,18 +59,24 @@ CKEDITOR.plugins.add( 'plinn_image', ); }); var pluginPath = this.path; + var allowed = 'img[alt,!src]{border-style,border-width,float,height,margin,margin-bottom,margin-left,margin-right,margin-top,width}'; + var required = 'img[alt,src]'; var command = editor.addCommand('plinn_image', { - exec : function(editor){openPlinnImageDialog(pluginPath, editor);} - }); + exec : function(editor){openPlinnImageDialog(pluginPath, editor);}, + allowedContent: allowed, + requiredContent: required + } + ); editor.ui.addButton('PlinnImage', { label : editor.lang.common.image, - icon : pluginPath + 'dialog/plinn_image.gif', + icon : pluginPath + 'dialog/plinn_image.png', command : 'plinn_image' }); } + }); })();