Skip to content

Commit bda3921

Browse files
committed
Cleanup after PR
1 parent ef96224 commit bda3921

File tree

4 files changed

+204
-193
lines changed

4 files changed

+204
-193
lines changed

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ Cal West <https://github.com/Allerion>
3333
Grégory Pelletey <gregory.pelletey@gmail.com>
3434
pages-solutions <https://github.com/pages-solutions>
3535
fuzzfree <https://github.com/fuzzfree>
36+
Roland Häder <https://github.com/Quix0r>

CHANGES.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# CHANGELOG
22

3-
## 2.0.9dev
3+
## 2.1.0dev
44

55
- Slovak translation.
6+
- Add a new `ruleIsMet` method that returns a boolean value indicating if all
7+
password inputs in the page pass a specific rule.
68

79
## 2.0.8
810

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,16 @@ $("#passwdfield").pwstrength("ruleActive", "wordSequences", false);
131131
That would avoid looking for sequences in the password being tested.
132132

133133

134+
### Know if all password inputs pass a specific rule
135+
136+
This method allows to make a quick check to test if all password inputs in the
137+
page pass a rule, the method returns a boolean value. Example:
138+
139+
```javascript
140+
$("#passwdfield").pwstrength("ruleIsMet", "wordSequences");
141+
```
142+
143+
134144
## Callback Functions
135145

136146
The plugin provides three callback functions, onLoad, onKeyUp, and scoreCalculated. You can use

0 commit comments

Comments
 (0)