| Issue 1: | jquery.passstrength.js output option is not working |
1 of 2
Next ›
|
| 1 person starred this issue and may be notified of changes. | Back to list |
I believe this code:
if (!options.element) {
$(this).parent().append($out_el);
} else {
options.element.append($out_el);
}
should be:
if (!options.output) {
$(this).parent().append($out_el);
} else {
options.output.append($out_el);
}
|