We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given an editor setup with just bold format available:
bold
new Quill(".editor", { formats: ['bold'] });
If a user hits the shortcut for italic then it fails because @editor.doc.formats[name] is undefined here:
italic
@editor.doc.formats[name]
Does this need a check for whether or not the format is available, or should Keyboard even be bound to the hotkey if it's not available?
Keyboard
The text was updated successfully, but these errors were encountered:
c5d2ede
Alternative fix for slab#432 that also works with formats added via q…
6ec2509
…uill.addFormat()
Merge pull request #441 from voxmedia/fix-hotkey-formats
47ee993
Alternative fix for #432 that also works with formats added via quill.addFormat()
Alternative fix for #432 that also works with formats added via quill…
fa9ee27
….addFormat()
No branches or pull requests
Given an editor setup with just
bold
format available:If a user hits the shortcut for
italic
then it fails because@editor.doc.formats[name]
is undefined here:Does this need a check for whether or not the format is available, or should
Keyboard
even be bound to the hotkey if it's not available?The text was updated successfully, but these errors were encountered: