Skip to content

Commit

Permalink
Fixed CNN county links
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonjude committed Nov 22, 2024
1 parent 8a20fbd commit 3f821b3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/model/map-types/usa-president-map-type.js
Original file line number Diff line number Diff line change
Expand Up @@ -1368,6 +1368,11 @@ var USAPresidentMapType = new MapType(
function(homepageURL, regionID, regionIDToLinkMap, _, shouldOpenHomepage, __)
{
if (!shouldOpenHomepage && !regionID) return

if (regionID && regionID.includes(subregionSeparator))
{
regionID = regionID.split(subregionSeparator)[0]
}

let linkToOpen = homepageURL
if (shouldOpenHomepage)
Expand Down

0 comments on commit 3f821b3

Please sign in to comment.