{"version":3,"sources":["wwwroot/js/Site.js"],"names":["$","click","passwordControl","this","data","attr","addClass","removeClass"],"mappings":"AAAAA,EAAA,oBAAAC,OAAA,WACA,IAAAC,EAAAF,EAAA,IAAAA,EAAAG,MAAAC,KAAA,qBAEA,aAAAF,EAAAG,KAAA,SAEAH,EAAAG,KAAA,OAAA,QACAL,EAAAG,MAAAG,SAAA,gBACAN,EAAAG,MAAAI,YAAA,YAIAL,EAAAG,KAAA,OAAA,YACAL,EAAAG,MAAAG,SAAA,UACAN,EAAAG,MAAAI,YAAA,gBAEA","file":"wwwroot/js/min/site.min.js","sourcesContent":["$('.toggle_password').click(function () {\r\n let passwordControl = $(\"#\" + $(this).data(\"password-control\"));\r\n\r\n if (passwordControl.attr(\"type\") === \"password\") {\r\n // Currently password, toggle to text\r\n passwordControl.attr(\"type\", \"text\");\r\n $(this).addClass(\"fa-eye-slash\");\r\n $(this).removeClass(\"fa-eye\");\r\n }\r\n else {\r\n // Currently text, toggle to password\r\n passwordControl.attr(\"type\", \"password\");\r\n $(this).addClass(\"fa-eye\");\r\n $(this).removeClass(\"fa-eye-slash\");\r\n }\r\n});\r\n"]}