switched to toUpperCase() in lookup
This commit is contained in:
parent
0ca82344a3
commit
dc2226bcdd
@ -261,7 +261,7 @@
|
||||
},
|
||||
country = document.querySelector("#Country");
|
||||
// sets the value in the form the user can see
|
||||
country.value = countries[newValue.toLowerCase()];
|
||||
country.value = countries[newValue.toUpperCase()];
|
||||
});
|
||||
|
||||
/*['email', 'country'].forEach(function(inputField){
|
||||
|
Loading…
Reference in New Issue
Block a user