Share Quill toolbar across multiple editors
问题 With the great Quill rich text editor for Javascript I'm trying to make two or more editors share the same toolbar. I suppose (from documentation) that this is not possible right away at the moment, so I'm trying to "simulate" this by adding the toolbar module through API on the editor that has been clicked as the latter: // this uses jQuery $editorTag.click(function(e){ var tag = e.target; var editor = getEditorByTag(tag); if( editor ) editor.addModule('toolbar',{container:'#toolbar'}); });