diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-25 20:31:11 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-25 20:31:11 +0100 |
commit | 2c07e8a44834566369adfb1fdf4d660bb5bf77bd (patch) | |
tree | d11b1d4606a7da53ec0c06cab3fa87725830ee56 | |
parent | d9aa5797fbecf29ca98c115f8e3867515d7c2606 (diff) | |
download | votes-for-women-2c07e8a44834566369adfb1fdf4d660bb5bf77bd.tar.gz |
fix region layout for Atlantic & Appalachia
-rw-r--r-- | play.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -385,7 +385,8 @@ function build_user_interface() { if (s) US_STATES_LAYOUT.push(LAYOUT[s.code]) } for(let r of REGION_NAMES) { - if (r) REGIONS_LAYOUT.push(LAYOUT[r]) + if (r) + REGIONS_LAYOUT.push(LAYOUT[r.replaceAll(' & ', '')]) } // TODO use onmousedown and figure out why it didn't work on mobile |