You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Catching events in the current setup is tricky using some javascript frameworks (ie Lit-html). Adding stardard
this.dispatchEvent(
new CustomEvent("eventName", {
bubbles: true,
composed: true,
}))
would make the implementation easier to integrate.
Note that a editor-ready event is also useful to catch considering time lag between element initiation and editor ready state.
The text was updated successfully, but these errors were encountered:
Catching events in the current setup is tricky using some javascript frameworks (ie Lit-html). Adding stardard
would make the implementation easier to integrate.
Note that a
editor-ready
event is also useful to catch considering time lag between element initiation and editor ready state.The text was updated successfully, but these errors were encountered: