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
When editing a card within its element (say, typing in an injected textarea or input) the editor’s behavior intercepts and prevents events like backspacing and pasting. The editor’s callbacks don’t need to fire while using in-card UI, and DOM events within the card should not be prevented/intercepted (maybe no DOM events should bubble out of the card element by default?).
The text was updated successfully, but these errors were encountered:
Ah, yeah, thanks for reporting. I recently refactored the listener code (in #113) to flow through a single event handling function, which should make it easier to stop all event handling when the user is in a sub-UI like a card. This should be straightforward to fix.
When editing a card within its
element
(say, typing in an injectedtextarea
orinput
) the editor’s behavior intercepts and prevents events like backspacing and pasting. The editor’s callbacks don’t need to fire while using in-card UI, and DOM events within the card should not be prevented/intercepted (maybe no DOM events should bubble out of the card element by default?).The text was updated successfully, but these errors were encountered: