diff options
Diffstat (limited to '.config/polyfillListIE.js')
-rw-r--r-- | .config/polyfillListIE.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/polyfillListIE.js b/.config/polyfillListIE.js index dbffbc5..7c7fc33 100644 --- a/.config/polyfillListIE.js +++ b/.config/polyfillListIE.js @@ -14,7 +14,9 @@ CustomEventPolyfill() try { if (!SVGElement.prototype.children) { Object.defineProperty(SVGElement.prototype, 'children', { - get: function () { return children(this) } + get: function () { + return children(this) + } }) } } catch (e) {} |