aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom/updateBackgroundPreview.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/dom/updateBackgroundPreview.ts')
-rw-r--r--webAO/dom/updateBackgroundPreview.ts29
1 files changed, 0 insertions, 29 deletions
diff --git a/webAO/dom/updateBackgroundPreview.ts b/webAO/dom/updateBackgroundPreview.ts
deleted file mode 100644
index e55bf60..0000000
--- a/webAO/dom/updateBackgroundPreview.ts
+++ /dev/null
@@ -1,29 +0,0 @@
-import { AO_HOST } from "../client";
-
-/**
- * Update background preview.
- */
-export function updateBackgroundPreview() {
- const background_select = <HTMLSelectElement>(
- document.getElementById("bg_select")
- );
- const background_filename = <HTMLInputElement>(
- document.getElementById("bg_filename")
- );
- const background_preview = <HTMLImageElement>(
- document.getElementById("bg_preview")
- );
-
- if (background_select.selectedIndex === 0) {
- background_filename.style.display = "initial";
- background_preview.src = `${AO_HOST}background/${encodeURI(
- background_filename.value.toLowerCase()
- )}/defenseempty.png`;
- } else {
- background_filename.style.display = "none";
- background_preview.src = `${AO_HOST}background/${encodeURI(
- background_select.value.toLowerCase()
- )}/defenseempty.png`;
- }
-}
-window.updateBackgroundPreview = updateBackgroundPreview; \ No newline at end of file