add missing javascript code

This commit is contained in:
Uwe Steinmann 2013-03-12 08:46:56 +01:00
parent 5e87cb378d
commit bfd92305f2

18
styles/hc/application.js Normal file
View File

@ -0,0 +1,18 @@
$(document).ready( function() {
$(".pwd").passStrength({
url: "../op/op.Ajax.php",
minscore: <?php echo (int) $passwordstrength; ?>,
onChange: function(data, target) {
pws = <?php echo (int) $passwordstrength; ?>;
kids = $('#'+target).children();
$(kids[1]).html(Math.round(data.strength));
$(kids[0]).width(data.strength);
if(data.strength > pws) {
$(kids[0]).css('background-color', 'green');
} else {
$(kids[0]).css('background-color', 'red');
}
}
});
});