39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
(function () {
|
|
'use strict';
|
|
/* quill snow editor */
|
|
var toolbarOptions = [
|
|
[{ 'header': [1, 2, 3, 4, 5, 6, false] }],
|
|
[{ 'font': [] }],
|
|
['bold', 'italic', 'underline', 'strike'], // toggled buttons
|
|
['blockquote', 'code-block'],
|
|
|
|
[{ 'header': 1 }, { 'header': 2 }], // custom button values
|
|
[{ 'list': 'ordered' }, { 'list': 'bullet' }],
|
|
[{ 'script': 'sub' }, { 'script': 'super' }], // superscript/subscript
|
|
[{ 'indent': '-1' }, { 'indent': '+1' }], // outdent/indent
|
|
[{ 'direction': 'rtl' }], // text direction
|
|
|
|
[{ 'size': ['small', false, 'large', 'huge'] }], // custom dropdown
|
|
|
|
[{ 'color': [] }, { 'background': [] }], // dropdown with defaults from theme
|
|
[{ 'align': [] }],
|
|
|
|
['image', 'video'],
|
|
['clean'] // remove formatting button
|
|
];
|
|
var quill = new Quill('#editor', {
|
|
modules: {
|
|
toolbar: toolbarOptions
|
|
},
|
|
theme: 'snow'
|
|
});
|
|
|
|
/* quill bubble editor */
|
|
var quill = new Quill('#editor1', {
|
|
modules: {
|
|
toolbar: undefined
|
|
},
|
|
theme: 'bubble'
|
|
});
|
|
|
|
})(); |