My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 1: jquery.passstrength.js output option is not working
1 person starred this issue and may be notified of changes. Back to list
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);
}


Powered by Google Project Hosting