$('#description').summernote({
lang:'ru-Ru',
height:300,
maxWidth:1600,
maxHeight:1800,
callbacks: {
onImageUpload: function(files) {
var el = $(this);
sendFile(files[0],el);
}
}
});