Remove an outdated artifact
authorAlexander Ebert <ebert@woltlab.com>
Thu, 6 Oct 2022 11:02:32 +0000 (13:02 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Thu, 6 Oct 2022 17:14:58 +0000 (19:14 +0200)
wcfsetup/install/files/js/WoltLabSuite/Core/Helper/Overlay.js [deleted file]

diff --git a/wcfsetup/install/files/js/WoltLabSuite/Core/Helper/Overlay.js b/wcfsetup/install/files/js/WoltLabSuite/Core/Helper/Overlay.js
deleted file mode 100644 (file)
index d521b76..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-define(["require", "exports"], function (require, exports) {
-    "use strict";
-    Object.defineProperty(exports, "__esModule", { value: true });
-    exports.getPageOverlayContainer = exports.adoptPageOverlayContainer = void 0;
-    const container = document.createElement("div");
-    container.id = "pageOverlayContainer";
-    document.body.append(container);
-    function adoptPageOverlayContainer(element) {
-        element.append(container);
-    }
-    exports.adoptPageOverlayContainer = adoptPageOverlayContainer;
-    function getPageOverlayContainer() {
-        return container;
-    }
-    exports.getPageOverlayContainer = getPageOverlayContainer;
-});