);
});
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'
});
}
+
});
})();