Skip to content

Commit 4c2aa72

Browse files
committed
victorjonsson#567 Dont uppercase input values (iban validator)
1 parent fc403a1 commit 4c2aa72

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/modules/sepa.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@
9696
];
9797

9898
var generalValidatorFunction = function (sepa) {
99-
sepa = sepa.toUpperCase();
10099
sepa = sepa.replace(/\s+/g, '');
101100
sepa = sepa.substr(4) + sepa.substr(0,4);
102101

@@ -179,7 +178,6 @@
179178

180179
$.formUtils.addValidator({
181180
name: 'iban',
182-
183181
validatorFunction: function(sepa) {
184182
return countryIBAN(sepa) && generalValidatorFunction(sepa);
185183
},

0 commit comments

Comments
 (0)