import Quill from 'quill'; import ImageResize from '@ammarkhalidfarooq/quill-image-resize-module-react-fix-for-mobile'; Quill.register('modules/imageResize', ImageResize); const quill = new Quill(editor, { // ... modules: { // ... imageResize: { parchment: Quill.import('parchment') ...
modules: { // ... ImageResize: { modules: [ MyModule, Resize ], // ... } } }); Credit This lib is basically quill-image-resize-module, ReactJS implemented quill-image-resize-module-react,About Module react Quill for resize images. Resources Readme Activity Custom properties Stars...
When I integrated the quill-image-resize-module with react-quill, the resizer stays in the screen even clicking outside the editor. The resizer getting closed when we click inside the editor. This is causing some bugs like, sometimes the resizing window is positioned outside of the image. @...