From: Steve Sutton Date: Wed, 26 Dec 2018 16:18:32 +0000 (-0500) Subject: Updating for forgot password form X-Git-Tag: v1.1.12^2~1 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=2cb3059459d380404817ccedcdf618d9068578d0;p=WP-Themes%2Fwesternup.git Updating for forgot password form needed js --- 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(); + }); });