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
The CSS.supports call in editor.js throws an unrecoverable error in IE11. Lots of people still use IE, and it's a pretty easy change to get it working. I wrapped it in a try...catch block but there might be a more graceful way to do it.
let COLOR;
try {
COLOR = (CSS.supports('caret-color', '#000')) ? BACKGROUND_COLOR : '#fff';
} catch (e) {
COLOR = '#fff';
}
The text was updated successfully, but these errors were encountered:
The
CSS.supports
call in editor.js throws an unrecoverable error in IE11. Lots of people still use IE, and it's a pretty easy change to get it working. I wrapped it in atry...catch
block but there might be a more graceful way to do it.The text was updated successfully, but these errors were encountered: