Skip to content

v1.0.0

Compare
Choose a tag to compare
@pedrosanta pedrosanta released this 14 Nov 16:51
· 139 commits to main since this release

Notes

Export the module as a UMD module and removes the behaviour of registering itself on Quill on import. It will need to be registered manually from now on. Improves it's export as a UMD module and stops relying on global/window RangeFix and imports it instead.

This release has breaking changes from the previous. Check how to migrate below.

Breaking Changes

This module stopped automatically registering itself, so make sure you register this module manually before using Quill like so:

Quill.register('modules/cursors', QuillCursors);

var editor = new Quill('#editor-container', {
  modules: {
    cursors: true,
  ...
});