Florent Daigniere 2 years ago
parent 66250e396c
commit 24b2c7c04a

@ -38,7 +38,7 @@ function hibpCheck(pwd){
for(index in resp){ for(index in resp){
// Check if the line matches the rest of the hash // Check if the line matches the rest of the hash
if(resp[index].substring(0, 35) == hashSub){ if(resp[index].substring(0, 35) == hashSub){
var val = resp[index].split(":")[1] const val = resp[index].split(":")[1]
if (val > 0) { if (val > 0) {
$("#pwned").value = val; $("#pwned").value = val;
} }
@ -126,8 +126,8 @@ $('document').ready(function() {
} }
if (window.isSecureContext) { if (window.isSecureContext) {
$("#HIBPpw").change(function(){ $("#pw").change(function(){
hibpCheck($("#HIBPpw").value); hibpCheck($("#pw").value);
return true; return true;
}) })
} }

Loading…
Cancel
Save