X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=index.html.in;h=94bc2a2829e0f37704eb8b1cea2695e1a2e15f46;hb=5df2fac29b21c263f715122fb5dec4cc4241aea7;hp=a68c273f33bf60bb8153367e759df80935d51e14;hpb=082b9d36c04a0efab9e298d780b6b3aa1782a431;p=charm-bypass.git diff --git a/index.html.in b/index.html.in index a68c273..94bc2a2 100644 --- a/index.html.in +++ b/index.html.in @@ -8,7 +8,7 @@ href="data:image/svg+xml;base64,@FAVICON@" /> - CharmBypass: that transit equity y'all + CharmBypass: got that transit equity @@ -198,23 +198,17 @@ @SVGDATA@ @@ -705,21 +733,39 @@ */ function compute_marc_zone(src, dest) { - /* Sorted on the first component, then the second */ + /* Sorted on the first component, then the second. + * + * Key: + * + * $6.00 => 1 + * $7.00 => 2 + * $8.00 => 3 + * $9.00 => 4 + */ const zone_map = { BAL_BWE: 2, BAL_BWI: 1, + BAL_HAE: 1, BAL_SEB: 3, BAL_WAS: 4, BAL_WBL: 1, BCA_CPK: 3, BCA_WAS: 4, BWE_BWI: 1, + BWE_HAE: 1, BWE_SEB: 1, BWE_WAS: 2, BWE_WBL: 2, + BWI_HAE: 1, + BWI_SEB: 2, BWI_WAS: 3, - BWI_WBL: 1 + BWI_WBL: 1, + HAE_SEB: 2, + HAE_WAS: 3, + HAE_WBL: 1, + SEB_WAS: 1, + SEB_WBL: 3, + WAS_WBL: 4 }; /* Forward direction key for zone_map */