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.ts42
1 files changed, 22 insertions, 20 deletions
diff --git a/webAO/dom/updateBackgroundPreview.ts b/webAO/dom/updateBackgroundPreview.ts
index 659d4cb..61eec58 100644
--- a/webAO/dom/updateBackgroundPreview.ts
+++ b/webAO/dom/updateBackgroundPreview.ts
@@ -1,29 +1,31 @@
-import { AO_HOST } from '../client/aoHost';
+import { AO_HOST } from "../client/aoHost";
import tryUrls from "../utils/tryUrls";
/**
* 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")
- );
+ 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";
- } else {
- background_filename.style.display = "none";
- }
- tryUrls(`${AO_HOST}background/${encodeURI(
- background_select.value.toLowerCase()
- )}/defenseempty`).then((resp) => {
- background_preview.src = resp;
- });
+ if (background_select.selectedIndex === 0) {
+ background_filename.style.display = "initial";
+ } else {
+ background_filename.style.display = "none";
+ }
+ tryUrls(
+ `${AO_HOST}background/${encodeURI(
+ background_select.value.toLowerCase(),
+ )}/defenseempty`,
+ ).then((resp) => {
+ background_preview.src = resp;
+ });
}
window.updateBackgroundPreview = updateBackgroundPreview;