removing unused javascript
authorAnthony Talarico <talarico@gaslightmedia.com>
Thu, 30 Jun 2016 17:12:30 +0000 (13:12 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Thu, 30 Jun 2016 17:12:30 +0000 (13:12 -0400)
js/app.js
js/custom/pageSetup.js

index 69f948b..9831bab 100644 (file)
--- a/js/app.js
+++ b/js/app.js
@@ -115,11 +115,5 @@ $(document).ready(function () {
     // change breadcrumbs 'products' to 'experiences'
     $(".post-product-archive").find('span').text('Tours');
     $("[property=name]:contains('Products')").html('Tours');
-    
-    var tour_name;
-    $(".tour-slides").mouseenter( function () {
-        tour_name = $(this).html();
-        tour_name = tour_name.match('product/(.*)/"></a>');
-        $(this).find('a').attr('data-content', tour_name[1]);
-    });
+
 });
index 4b63f06..278bae2 100644 (file)
@@ -106,11 +106,5 @@ $(document).ready(function () {
     // change breadcrumbs 'products' to 'experiences'
     $(".post-product-archive").find('span').text('Tours');
     $("[property=name]:contains('Products')").html('Tours');
-    
-    var tour_name;
-    $(".tour-slides").mouseenter( function () {
-        tour_name = $(this).html();
-        tour_name = tour_name.match('product/(.*)/"></a>');
-        $(this).find('a').attr('data-content', tour_name[1]);
-    });
+
 });