As of Quill version 1.3, none of the answers above work anymore.
Unfortunately, the official documentation hasn't progressed much either.
You have two ways to solve your problem, both work for official themes Snow and Bubble.
Either way, you do not have to add the following code:
'image-tooltip': true,
'link-tooltip': true
Way 1:
Initialize quill as following:
var editor = new Quill('#editorDiv',
{
modules: {
toolbar: [
...
['image'],
...
],
//not needed anymore: 'image-tooltip': true,
//not needed anymore: 'link-tooltip': true
...
},
...
});
Way 2:
Initialize quill as following:
<div id="editorToolbarDiv">
...
<button class="ql-image"></button>
</div>
<div id="editorDiv"></div>
var editor = new Quill('#editorDiv',
{
modules: {
toolbar: '#editorToolbarDiv',
//not needed anymore: 'image-tooltip': true,
//not needed anymore: 'link-tooltip': true,
...
},
...
});
As of version 1.3, Quill does not support resizing images. One can do it with a custom module, though.