You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.
Hello @didacpr
I had the same problem
After much reading, I came up with this solution:- quill; options = { toolbar: { container: [ ['bold', 'italic', 'link', {list: 'bullet'}, {list: 'ordered'}, 'blockquote', {redo: 'redo'}, {undo: 'undo'} ] ], handlers: { redo() { this.quill.history.redo(); }, undo() { this.quill.history.undo(); } } }, history: { delay: 2000, maxStack: 500, userOnly: true } };
And for the HTML:- <quill-editor (onEditorCreated)="quill = $event" [modules]="options"></quill-editor>
And it works fine.
Happy coding ;)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi! I've installed the ngx-quill-editor and it works perfectly, but I need to add the Undo/Redo buttons and I can't make it works.
Here you have a github repository that I've created and reproduced the Issue.
https://github.com/didacpr/quill-editor
I'm using:
What am I doing wrong?
Thanks!
The text was updated successfully, but these errors were encountered: