A plugin for the Summernote WYSIWYG editor.
Adds two buttons to the image popover to edit title, alt, class and style attributes, and Links with relevant Attributes (Thanks to minidc).
It also optionally adds a dropdown to choose from Bootstrap image shapes (Thanks to MarcosBL).
Include the following code after Summernote:
<script src="summernote-image-attributes.js"></script>Currently available in English, Spanish, French and Chinese (Traditional)!
Finally, customize the Summernote image popover.
$(document).ready(function() {
$('#summernote').summernote({
popover: {
image: [
['imagesize', ['imageSize100', 'imageSize50', 'imageSize25']],
['float', ['floatLeft', 'floatRight', 'floatNone']],
['custom', ['imageAttributes', 'imageShape']],
['remove', ['removeMedia']]
],
},
lang: 'en-US'
/* Do NOT set the below options when Calling Summernote, we're working on why these are throwing an error that causes the plugin not to work.
imageAttributes:{
icon:'<i class="note-icon-pencil"/>',
removeEmpty:false // true = remove attributes | false = leave empty if present
},
imageShape: {
icon: '<i class="note-icon-picture"/>'
}
*/
});
});
