Skip to content
This repository has been archived by the owner on Nov 10, 2018. It is now read-only.

Commit

Permalink
woops typo
Browse files Browse the repository at this point in the history
  • Loading branch information
3n committed Mar 22, 2011
1 parent b2f881e commit fa02fee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ValidateSimple.js
Expand Up @@ -304,7 +304,7 @@ ValidateSimple.Validators = {
'alphanumeric': {
test: function(input){
var value = input.get('value');
return value.length > 0 & !value.test(/\W/);
return value.length > 0 && !value.test(/\W/);
}
},
'numeric': {
Expand Down

0 comments on commit fa02fee

Please sign in to comment.