What happened?
The current document looks like this
Validator.registerAsync('username_available', function(username, attribute, req, passes) {
However, the order of attribute and req is actually reversed.
What did you expect to happen?
It should be written like this
Validator.registerAsync('username_available', function(username, requirement, attribute, passes) {
Are you willing to submit a pull request to fix this bug?
I don't know if they would even look at it if I submitted it.
What happened?
The current document looks like this
However, the order of
attributeandreqis actually reversed.What did you expect to happen?
It should be written like this
Are you willing to submit a pull request to fix this bug?
I don't know if they would even look at it if I submitted it.