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
Hey,
Firefox stopped requiring disabling controls five years ago [1]. So you are now able to remove your last usages of document.execCommand for things like "enableInlineTableEditing" or "enableObjectResizing".
I also see you have a few more places where you use execCommand. I would generally encourage you to find other alternatives as execCommand tends to break editors and most main editors have switched away from using it.
The text was updated successfully, but these errors were encountered:
Hey,
Firefox stopped requiring disabling controls five years ago [1]. So you are now able to remove your last usages of
document.execCommand
for things like "enableInlineTableEditing" or "enableObjectResizing".[1] https://bugzilla.mozilla.org/show_bug.cgi?id=1490641
I also see you have a few more places where you use execCommand. I would generally encourage you to find other alternatives as execCommand tends to break editors and most main editors have switched away from using it.
The text was updated successfully, but these errors were encountered: