From dc2cf89b3f50880ede81dd874238917e8445d7e4 Mon Sep 17 00:00:00 2001 From: hackademix Date: Sun, 21 Jul 2019 10:15:37 +0200 Subject: Update childNode.parentNode.removeChild(childNode) pattern to childNode.remove(). --- src/ui/ui.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ui/ui.js') diff --git a/src/ui/ui.js b/src/ui/ui.js index a387d6e..2ebaa41 100644 --- a/src/ui/ui.js +++ b/src/ui/ui.js @@ -162,7 +162,7 @@ var UI = (() => { canary.style.display = "none"; document.body.appendChild(canary); UI.highContrast = window.getComputedStyle(canary).backgroundImage === "none"; - canary.parentNode.removeChild(canary); + canary.remove(); } return UI.highContrast; } @@ -361,7 +361,7 @@ var UI = (() => { this.rowTemplate = this.initRow(); for (let r of this.allSiteRows()) { - r.parentNode.removeChild(r); + r.remove(); } this.customize(null); this.sitesCount = 0; @@ -760,7 +760,7 @@ var UI = (() => { policy.set(site, row.perms); for(let r of this.allSiteRows()) { if (r !== row && r.siteMatch === site && r.contextMatch === row.contextMatch) { - r.parentNode.removeChild(r); + r.remove(); } } let newRow = this.createSiteRow(site, site, row.perms, row.contextMatch, row.sitesCount); -- cgit v1.2.3