From 70f56425cca85a866aaacfa80a3fb6fd3819bfaa Mon Sep 17 00:00:00 2001 From: David Ashby Date: Sun, 20 Mar 2022 17:14:08 -0400 Subject: [PATCH] properly URL escape maps links --- index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 36b39db..6a5f0f0 100644 --- a/index.html +++ b/index.html @@ -562,13 +562,13 @@

View in: Google Maps {{#isAppleIsh}} Apple Maps @@ -618,6 +618,7 @@ value.slug = slugify(value.name); value.cleanedWebsite = cleanWebsite(value.website); value.isAppleIsh = isAppleIsh; + value.nameURLEscaped = encodeURIComponent(value.name); }); $("#storeCount").html(data.length); window.data = data;