harshit raghav
harshit raghav

Reputation: 653

How to add image button in quill.js toolbar in angular 7 using ngx-quill?

I'm using ngx-quill for integrating quill.js in my project as mentioned on this link.

https://www.npmjs.com/package/ngx-quill

<quill-editor></quill-editor>

Using this tag I get the editor and toolbar but I want to add image button on the toolbar as well.

Upvotes: 0

Views: 1269

Answers (1)

harshit raghav
harshit raghav

Reputation: 653

I managed to add image option in my toolbar using the quill-editor-toolbar.

<div quill-editor-toolbar>
 <span class="ql-formats">
  <button class="ql-image" [title]="'Image'"></button>
 </span>
</div>

I wrapped this inside <quill-editor>

Upvotes: 1

Related Questions