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
// set default classeditor.classList.add(defaults.class);
the attribute classList is not exist under IE < 10, actually it's not necessary to use this attribute, instead there are more convenient methods to browser compatibility, for example className, also see https://developer.mozilla.org/en-US/docs/Web/API/Element/classList
don't know why use classList, not aiming to support IE < 10 from the first thought?
The text was updated successfully, but these errors were encountered:
line 432:
the attribute classList is not exist under IE < 10, actually it's not necessary to use this attribute, instead there are more convenient methods to browser compatibility, for example
className
, also see https://developer.mozilla.org/en-US/docs/Web/API/Element/classListdon't know why use
classList
, not aiming to support IE < 10 from the first thought?The text was updated successfully, but these errors were encountered: