Fix minor inconsistencies

This commit is contained in:
Daniel Sinn
2015-12-29 12:32:48 -05:00
parent 0e85146b85
commit 29d772b48a
3 changed files with 12 additions and 10 deletions
+2 -2
View File
@@ -645,7 +645,7 @@ $('section').each(function () {
});
$instruction.html(instructions[conditions[checked[0]][checked[1]][checked[2]][checked[3]]]);
});
}).triggerHandler('change');
})();
(function () {
@@ -687,7 +687,7 @@ $('section').each(function () {
regex = new RegExp(pattern);
$passwords.forEach(function ($password) {
$password.toggleClass("inactive", !$password.text().match(regex));
$password.toggleClass('inactive', !$password.text().match(regex));
});
});
})();