1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| // Basic
|
| var quill = new Quill('#editor-container', {
| modules: {
| toolbar: [
| [{ header: [1, 2, false] }],
| ['bold', 'italic', 'underline'],
| ['image', 'code-block']
| ]
| },
| placeholder: 'Compose an epic...',
| theme: 'snow' // or 'bubble'
| });
|
|
| // With Tooltip
|
| var quill = new Quill('#quill-tooltip', {
| modules: {
| toolbar: '#toolbar-container'
| },
| placeholder: 'Compose an epic...',
| theme: 'snow'
| });
|
| // Enable all tooltips
| $('[data-toggle="tooltip"]').tooltip();
|
| // Can control programmatically too
| $('.ql-italic').mouseover();
| setTimeout(function() {
| $('.ql-italic').mouseout();
| }, 2500);
|
|