(input)
| 69 | |
| 70 | // Get fieldname |
| 71 | function getFieldName(input) { |
| 72 | return input.id.charAt(0).toUpperCase() + input.id.slice(1); |
| 73 | } |
| 74 | |
| 75 | // Event listeners |
| 76 | form.addEventListener('submit', function(e) { |
no outgoing calls
no test coverage detected