Merge pull request #15031 from Snuffleupagus/prefer-modern-dom-apis

Enable the `unicorn/prefer-modern-dom-apis` ESLint plugin rule
This commit is contained in:
Tim van der Meij 2022-06-12 20:36:40 +02:00 committed by GitHub
commit 1a6ae5f034
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 5 deletions

View File

@ -55,6 +55,7 @@
"unicorn/prefer-date-now": "error",
"unicorn/prefer-dom-node-append": "error",
"unicorn/prefer-dom-node-remove": "error",
"unicorn/prefer-modern-dom-apis": "error",
"unicorn/prefer-string-starts-ends-with": "error",
// Possible errors

View File

@ -133,7 +133,7 @@ function updateEmbedElement(elem) {
elem.type = "text/html";
elem.src = getEmbeddedViewerURL(elem.src);
if (parentNode) {
parentNode.insertBefore(elem, nextSibling);
nextSibling.before(elem);
}
}

View File

@ -2559,9 +2559,9 @@ class AnnotationLayer {
if (!firstChild) {
element.append(canvas);
} else if (firstChild.nodeName === "CANVAS") {
element.replaceChild(canvas, firstChild);
firstChild.replaceWith(canvas);
} else {
element.insertBefore(canvas, firstChild);
firstChild.before(canvas);
}
}
annotationCanvasMap.clear();

View File

@ -627,7 +627,7 @@ class PDFPageView {
if (lastDivBeforeTextDiv) {
// The annotation layer needs to stay on top.
div.insertBefore(canvasWrapper, lastDivBeforeTextDiv);
lastDivBeforeTextDiv.before(canvasWrapper);
} else {
div.append(canvasWrapper);
}
@ -640,7 +640,7 @@ class PDFPageView {
textLayerDiv.style.height = canvasWrapper.style.height;
if (lastDivBeforeTextDiv) {
// The annotation layer needs to stay on top.
div.insertBefore(textLayerDiv, lastDivBeforeTextDiv);
lastDivBeforeTextDiv.before(textLayerDiv);
} else {
div.append(textLayerDiv);
}