From 0afe1441dee073b90aa6b02e481b54a98219e454 Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 24 Jan 2017 11:27:25 -0600 Subject: [PATCH] Fix 'See Photos' link for hyphenated registrations \W would probably work for the regex, but I wanted to make it as narrow as possible. --- public_html/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/script.js b/public_html/script.js index 3a70b73..687b978 100644 --- a/public_html/script.js +++ b/public_html/script.js @@ -1378,7 +1378,7 @@ function getFlightAwareModeSLink(code, ident, linkText) { function getFlightAwarePhotoLink(registration) { if (registration !== null && registration !== "") { - return "See Photos"; + return "See Photos"; } return "";