yabwe / medium-editor

Medium.com WYSIWYG editor clone. Uses contenteditable API to implement a rich text solution.
https://yabwe.github.io/medium-editor/
Other
16.03k stars 1.85k forks source link

Question: Is it possbile to have two toolbars on the same class? #1603

Open RobertJGabriel opened 11 months ago

RobertJGabriel commented 11 months ago

Hey,

Just incase im missing something.

Is it possible to have two instances of the toolbar on the same classes.

One on top of the element, one along the bottom. When trying it only allows one.

 let elements = document.querySelectorAll(tag);
 this.editor = new MediumEditor(elements, {});
 this.editor2 = new MediumEditor(elements, {});

Thank you

RobertJGabriel commented 11 months ago

@ksorv