diff --git a/scripts/parsley-anyof.js b/scripts/parsley-anyof.js index f293c1d..273744e 100644 --- a/scripts/parsley-anyof.js +++ b/scripts/parsley-anyof.js @@ -1,5 +1,5 @@ $(document).ready(function() { window.ParsleyValidator.addValidator('anyof', function (value, array) { return array.indexOf(value); - }, 32).addMessage('en', 'anyof', 'The value you have given is not an listed option.') + }, 32).addMessage('en', 'anyof', 'The value you have given is not a listed option.') });