Skip to content

Commit

Permalink
fix(*): fix jscs errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zdrawku committed Feb 8, 2019
1 parent 1db2d91 commit 2ecf913
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/modules/infragistics.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -1537,12 +1537,12 @@
return this.parentNode && this.parentNode.removeChild(this);
}

// polyfill for IE11+. ChildNode.remove() is not supported by IE11+.
// polyfill for IE11+. ChildNode.remove() is not supported by IE11+.
if (!Element.prototype.remove) {
Element.prototype.remove = removePolyfillIE;
}

if (Text && !Text.prototype.remove) {
if (Text && !Text.prototype.remove) {
Text.prototype.remove = removePolyfillIE;
}

Expand Down

0 comments on commit 2ecf913

Please sign in to comment.