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
So, noticed earlier that when trying to use the non-minified version of this module (/dist/quill-cursors.js) on the included example, it doesn't run and displays the following error:
TypeError: undefined is not an object (evaluating 'target.register') (...)
I think this has to do to some issue with Webpack bundling, but still haven't found out why.
The text was updated successfully, but these errors were encountered:
Can 2nd this. When trying to import the non-minified version I get the same error. Importing the min.js version works:
In my meteor project I need to do:
const QuillCursors=require('quill-cursors/dist/quill-cursors.min.js');
then
Quill.register('modules/cursors', QuillCursors);
Quill.import('modules/cursors')
to have it all work out properly
So, noticed earlier that when trying to use the non-minified version of this module (
/dist/quill-cursors.js
) on the included example, it doesn't run and displays the following error:I think this has to do to some issue with Webpack bundling, but still haven't found out why.
The text was updated successfully, but these errors were encountered: