nodebb-plugin-composer-quill
nodebb-plugin-composer-quill copied to clipboard
Upload and Picture handlers should be bound to the current editor
In nbb-quill.js:
This line should change from:
toolbarOptions.handlers[name] = toolbarHandlers[name].bind($('.formatting-bar'));
To:
toolbarOptions.handlers[name] = toolbarHandlers[name].bind(textareaEl.parents('.composer-container').find('.formatting-bar'));