Como adicionar múltiplos editores de texto ricos em piadas
var editorId = ["#addCorpEditor", "#editCorpEditor", "#addOtherEditor", "#editOtherEditor", "#addAnnexureEditor", "#editAnnexureEditor"];
for(editor of editorId){
createEditor(editor);
}
function createEditor(selector) {
let quill = new Quill(selector, {
theme: 'snow',
placeholder: 'Add your content here',
});
}
UK