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
{{ message }}
This repository has been archived by the owner on Jul 24, 2019. It is now read-only.
With the WYSIWYG editor, if you select outside of the text area and then mouse over the WYSIWYG area, the buttons update to show the state of whatever the current selection is. This is because of editor.attr('contenteditable', true).on('mouseup keyup mouseout', function () {
Removing the mouseout from that line fix's the issue, but im not sure if it breaks some functionality.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
With the WYSIWYG editor, if you select outside of the text area and then mouse over the WYSIWYG area, the buttons update to show the state of whatever the current selection is. This is because of
editor.attr('contenteditable', true).on('mouseup keyup mouseout', function () {
Removing the mouseout from that line fix's the issue, but im not sure if it breaks some functionality.
The text was updated successfully, but these errors were encountered: