script-custom-editor.js 520 B

12345678910111213
  1. $(document).ready(function () {
  2. // Initialize Editor
  3. //$('.textarea-editor').wysihtml5();
  4. $('.textarea-editor').summernote(
  5. {
  6. height: 300, // set editor height
  7. minHeight: null, // set minimum height of editor
  8. maxHeight: null, // set maximum height of editor
  9. focus: false // set focus to editable area after initializing summernote
  10. });
  11. $('.note-editor').css({ "width": '100%' })
  12. });