15 lines
368 B
JavaScript
15 lines
368 B
JavaScript
|
jQuery(document).ready(function() {
|
||
|
$(".summernote").summernote({
|
||
|
height: 190,
|
||
|
minHeight: null,
|
||
|
maxHeight: null,
|
||
|
focus: !1
|
||
|
}), $(".inline-editor").summernote({
|
||
|
airMode: !0
|
||
|
})
|
||
|
}), window.edit = function() {
|
||
|
$(".click2edit").summernote()
|
||
|
}, window.save = function() {
|
||
|
$(".click2edit").summernote("destroy")
|
||
|
};
|