18 lines
556 B
JavaScript
18 lines
556 B
JavaScript
/*
|
|
Template Name: Qovex - Responsive Bootstrap 4 Admin Dashboard
|
|
Author: Themesbrand
|
|
Website: https://themesbrand.com/
|
|
Contact: themesbrand@gmail.com
|
|
File: Email summernote
|
|
*/
|
|
|
|
$(document).ready(function(){
|
|
|
|
$('.summernote').summernote({
|
|
height: 200, // set editor height
|
|
minHeight: null, // set minimum height of editor
|
|
maxHeight: null, // set maximum height of editor
|
|
focus: false, // set focus to editable area after initializing summernote
|
|
lang: 'fa-IR'
|
|
});
|
|
}); |