From eba5ca19f2efb70260cd8602de6a9719c4d9d7c0 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 24 Apr 2019 12:38:49 -0400 Subject: [PATCH] adding the term counties to the regions events search map --- js/app.js | 2 +- js/custom/eventsSearch.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index c6c3e00..105cb51 100644 --- a/js/app.js +++ b/js/app.js @@ -40,7 +40,7 @@ var g=a(f(this.selector(c),a("
").html(c.attr("title")).html())),h=thi $(".up-map-region").hover( function(){ var regionName = $(this).data("region"); - regionTitle.html("
"+regionName+"
"); + regionTitle.html("
"+regionName+" Counties
"); $.each(Regions[$(this).data("region")], function(i, val){ $("
  • "+ val + "
  • ").appendTo(countiesList); }); diff --git a/js/custom/eventsSearch.js b/js/custom/eventsSearch.js index 001338e..eebc6bc 100644 --- a/js/custom/eventsSearch.js +++ b/js/custom/eventsSearch.js @@ -17,7 +17,7 @@ jQuery(function($){ $(".up-map-region").hover( function(){ var regionName = $(this).data("region"); - regionTitle.html("
    "+regionName+"
    "); + regionTitle.html("
    "+regionName+" Counties
    "); $.each(Regions[$(this).data("region")], function(i, val){ $("
  • "+ val + "
  • ").appendTo(countiesList); }); -- 2.17.1