mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 15:14:58 +00:00
copied missing file from blue theme
This commit is contained in:
parent
096f99cd1c
commit
fa9c501771
18
styles/clean/application.js
Normal file
18
styles/clean/application.js
Normal 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');
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user