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
Currently, we use content-editable divs for some of the inputs. In some of them, it would be nice to have the spell check enabled. However, it does not look very nice when the red underlines stay in the text even when it is not focused.
TL;DR: We need to enable spellcheck for content-editable only when focused.
Problem: The only event of user leaving the input is focus event and once the div is not focused, the red underlines won't be redrawn, so we need to figure out how to remove them manually?
The text was updated successfully, but these errors were encountered:
Currently, we use content-editable divs for some of the inputs. In some of them, it would be nice to have the spell check enabled. However, it does not look very nice when the red underlines stay in the text even when it is not focused.
TL;DR: We need to enable spellcheck for content-editable only when focused.
Problem: The only event of user leaving the input is focus event and once the div is not focused, the red underlines won't be redrawn, so we need to figure out how to remove them manually?
The text was updated successfully, but these errors were encountered: