]> gitweb.michael.orlitzky.com - charm-bypass.git/commitdiff
index.html.in: set the service zone when the page loads
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 3 Nov 2023 00:28:34 +0000 (20:28 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 3 Nov 2023 03:19:08 +0000 (23:19 -0400)
index.html.in

index 1b1eaba1cb9860ef3915d9dd0706e380f02c94e6..50048422b7549422de5723ab33f32bb1c9fb5500 100644 (file)
         /* Otherwise, leave it at "BaltimoreLink" */
       }
 
+
+      /************************/
+      /* Set the service zone */
+      /************************/
+      function set_service_zone() {
+        const z = document.getElementById("zone");
+
+        /* Get the "zone" from the querystring if it's there */
+        const params = new URLSearchParams(document.location.search);
+        if (params.get("zone")) {
+          z.textContent = params.get("zone");
+          z.style.display = "block"; /* It's hidden by default */
+        }
+
+        /* Otherwise, leave it blank (and hidden) */
+      }
+
       /***********************************************************/
       /* Resize the  ticket background based on the service name */
       /***********************************************************/
         /* Set the service name when the page has loaded */
         window.addEventListener("load", set_service_name);
 
+        /* Set the service zone when the page has loaded */
+        window.addEventListener("load", set_service_zone);
+
         /* Resize the ticket background if necessary */
         window.addEventListener("load", resize_ticket);