reedsy / quill-cursors

A multi cursor module for Quill text editor.
MIT License
249 stars 53 forks source link

Fix `null` being rendered on clear #46

Closed alecgibson closed 4 years ago

alecgibson commented 4 years ago

Fixes https://github.com/reedsy/quill-cursors/issues/45

When setting an element's innerHTML to null, Internet Explorer will render this as a "null" text node. This change instead replaces the contents with an empty string, which should be rendered correctly across all browsers.