[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
simkeu 07072025
/
login
/
scripts
/
editors
/
[
Home
]
File: summernote.js
'use strict'; /** * @author Batch Themes Ltd. */ (function() { $(function() { if (!element_exists('#editors-summernote')) { return false; } $('#summernote-example-1').summernote({ airMode: true, popover: false, }); $('#summernote-example-2').summernote({ airMode: false, height: 300, // set editor height minHeight: null, // set minimum height of editor maxHeight: null, // set maximum height of editor focus: true, popover: false, toolbar: [ // [groupName, [list of button]] ['style', ['bold', 'italic', 'underline', 'clear']], ['font', ['strikethrough', 'superscript', 'subscript']], ['fontsize', ['fontsize']], //['color', ['color']], ['para', ['ul', 'ol', 'paragraph']], ['height', ['height']] ] }); }); })();