From 2cb3059459d380404817ccedcdf618d9068578d0 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 26 Dec 2018 11:18:32 -0500 Subject: [PATCH] Updating for forgot password form needed js --- js/app.js | 4 ++++ js/custom/pageSetup.js | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/js/app.js b/js/app.js index 51a13b2..615faf0 100644 --- a/js/app.js +++ b/js/app.js @@ -29,4 +29,8 @@ $(document).ready(function () { $('#activate-weather') .mouseover(function() {$('#weather-widget').slideDown();}) .mouseout(function() {$('#weather-widget').slideUp();}); + + $('#glm-member-password-lost-link').click(function() { + $('#glm-member-password-lost-form').show(); + }); }); diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index 4bdfaf2..db7cf6d 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -20,4 +20,8 @@ $(document).ready(function () { $('#activate-weather') .mouseover(function() {$('#weather-widget').slideDown();}) .mouseout(function() {$('#weather-widget').slideUp();}); + + $('#glm-member-password-lost-link').click(function() { + $('#glm-member-password-lost-form').show(); + }); }); -- 2.17.1