Issue 1: jquery.passstrength.js output option is not working
Status:  New
Owner: ----
Reported by dbb...@shaw.ca, Jan 24, 2014
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);
}