kommitters / editorjs-tooltip

Tooltips for editorjs
https://www.npmjs.com/package/editorjs-tooltip
MIT License
37 stars 15 forks source link

Solve error in editorJS v2.29.0 #123

Closed MarioRodriguezS closed 7 months ago

MarioRodriguezS commented 7 months ago

Description

Fix #122

The issue was related to the editorjs version, in version 2.29.0 the elements with classes ct and ct__content are rendered after the plugin constructor; in the plugin, these elements are used to customize the tooltip, so the plugin was not set correctly. The solution is to customize the tooltip after the plugin constructor is called, specifically, it is possible to use the plugin render method.

The solution was tested in other EditorJS versions without any issues.