From 7a55031f8a895d0c22631aa3c3a21723b0b2ee3b Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Thu, 10 Dec 2015 13:20:25 -0500 Subject: [PATCH] testing medium/tablet view dropdown function --- js/app.js | 7 +++++++ js/custom/pageSetup.js | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/js/app.js b/js/app.js index dc0f59a..66903c1 100644 --- a/js/app.js +++ b/js/app.js @@ -204,4 +204,11 @@ $(document).ready(function () { $("a:contains('Explore')").attr("href", "#"); $("a:contains('Play')").attr("href", "#"); $(".parent-link a:contains('Our Properties')").text("Stafford's Home"); + $("#menu-item-1823").on("click",function () { + if ($(".title.back.js-generated").css("display") === "none") { + $(".title.back.js-generated").css("display", "inherit"); + } else { + + } + }); }); diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index cfead0f..1783844 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -195,4 +195,11 @@ $(document).ready(function () { $("a:contains('Explore')").attr("href", "#"); $("a:contains('Play')").attr("href", "#"); $(".parent-link a:contains('Our Properties')").text("Stafford's Home"); + $("#menu-item-1823").on("click",function () { + if ($(".title.back.js-generated").css("display") === "none") { + $(".title.back.js-generated").css("display", "inherit"); + } else { + + } + }); }); -- 2.17.1