From d2b1c763cd3996ee324225a0bfd11f0b99765bb5 Mon Sep 17 00:00:00 2001 From: Binal Patel Date: Tue, 26 Mar 2024 10:59:51 -0700 Subject: [PATCH] Change LABKEY.login.PasswordGauge to LABKEY.PasswordGauge (#648) --- webapp/frontPage/js/modal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/frontPage/js/modal.js b/webapp/frontPage/js/modal.js index 36c3f58b3..f63ccda74 100644 --- a/webapp/frontPage/js/modal.js +++ b/webapp/frontPage/js/modal.js @@ -594,7 +594,7 @@ define(['jquery', 'magnific', 'util'], function($, magnific, util) { self.initPasswordGauge = function() { var $pw_gauge = self.$modal.find('#password-gauge'); if ($pw_gauge.length > 0) { - LABKEY.login.PasswordGauge.createComponent('password-gauge', 'password1', null, null); + LABKEY.PasswordGauge.createComponent('password-gauge', 'password1', null, null); // the elements in the magnific modals are sized relatively, and the password gauge expects absolute sizing, // work around this by setting the gauge size after we know what the password elements have been computed.