I am trying to use summernote
editor in my application. I used height/minheight, maxheigh where I want to fix the editor and not allow it to be resizable.
Here is the code that I'm working on:
$('#content').summernote({
height: 400,
minHeight: 400,
maxHeight: 600,
});
This worked for me...