A plugin for the Summernote WYSIWYG editor.
Adds a button to the Summernote Toolbar that allows upload/insert video and some embedding attribute.
Include the following code after Summernote:
<script src="summernote-video.js"></script>Currently available in English.
Finally, customize the Summernote video popover.
$(document).ready(function() {
$('#summernote').summernote({
toolbar:[
... Your other toolbar options
['insert', ['videoUpload']],
... Your other toolbar options
]
});
});- Thanks to DiemenDesign