Plugin Announcement: Rich Text Editor

Hi @maryfox20 :wave:,

Bubble disabled Grammarly for text inputs by adding the “data-gramm” attribute. (Probably because of this post)

A “dirty” workaround is to remove this attribute on page load with JS.
Add the following Javascript (Toolbox plugin)

For the Rich Text inputs
document.getElementById("richtext-editor-0").getElementsByClassName("ql-editor")[0].removeAttribute("data-gramm");

For Multiline inputs (Add an ID to your element)
document.getElementById("YourID").removeAttribute("data-gramm_editor");

@allenyang , I would also like to add that your last build 1.6.6 is broken, can this be fixed soon ? as I need the “undo keyboard shortcut” to work. Thanks

2 Likes