Module extension for Quill.js that make snow theme toolbar as sticky.
const toolbarOptions = {
container: [
['bold', 'italic', 'underline', 'strike'],
['emoji'],
],
handlers: {'emoji': function() {}}
}
const quill = new Quill(editor, {
// ...
modules: {
// ...
toolbar: toolbarOptions,
sticky_toolbar: true
}
});
Please check out our contributing guidelines.