| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /**
- * Form Editors
- */
-
- 'use strict';
-
- (function () {
- // Snow Theme
- // --------------------------------------------------------------------
- const snowEditor = new Quill('#snow-editor', {
- bounds: '#snow-editor',
- modules: {
- syntax: true,
- toolbar: '#snow-toolbar'
- },
- theme: 'snow'
- });
-
- // Bubble Theme
- // --------------------------------------------------------------------
- const bubbleEditor = new Quill('#bubble-editor', {
- modules: {
- toolbar: '#bubble-toolbar'
- },
- theme: 'bubble'
- });
-
- // Full Toolbar
- // --------------------------------------------------------------------
- const fullToolbar = [
- [
- {
- font: []
- },
- {
- size: []
- }
- ],
- ['bold', 'italic', 'underline', 'strike'],
- [
- {
- color: []
- },
- {
- background: []
- }
- ],
- [
- {
- script: 'super'
- },
- {
- script: 'sub'
- }
- ],
- [
- {
- header: '1'
- },
- {
- header: '2'
- },
- 'blockquote',
- 'code-block'
- ],
- [
- {
- list: 'ordered'
- },
- {
- indent: '-1'
- },
- {
- indent: '+1'
- }
- ],
- [{ direction: 'rtl' }, { align: [] }],
- ['link', 'image', 'video', 'formula'],
- ['clean']
- ];
- const fullEditor = new Quill('#full-editor', {
- bounds: '#full-editor',
- placeholder: 'Type Something...',
- modules: {
- syntax: true,
- toolbar: fullToolbar
- },
- theme: 'snow'
- });
- })();
|