I can\'t figure out how to get images to work like in the example on http://quilljs.com/.
I tried adding
Edit: This is no longer accurate as of 1.0. Chris Hawkes's answer is correct.
This unfortunately doesn't seem documented anywhere but you need to include the image-tooltip module. For example, this is what the editor on the quilljs.com homepage uses:
quill = new Quill('#editor', {
modules: {
'toolbar': { container: '#toolbar' },
'image-tooltip': true,
'link-tooltip': true
},
theme: 'snow'
});