UNPKG

266 BJavaScriptView Raw
1
2// Polyfill for IE 9-11 classList on <svg> elements
3if (Object.getOwnPropertyDescriptor(Element.prototype, 'classList') === undefined) {
4 Object.defineProperty(Element.prototype, 'classList', Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'classList'));
5}