|
22 | 22 | }
|
23 | 23 |
|
24 | 24 | $form.prepend( $ulError );
|
25 |
| - $("html, body").animate({ |
26 |
| - scrollTop:0 |
27 |
| - },"slow"); |
| 25 | + $("html, body").animate({ scrollTop:0 },"slow"); |
28 | 26 | }
|
29 | 27 |
|
30 | 28 | function omiseFormHandler(){
|
|
70 | 68 | }
|
71 | 69 | });
|
72 | 70 |
|
73 |
| - let errors = [], |
74 |
| - omise_card = {}, |
| 71 | + let errors = [], |
| 72 | + omise_card = {}, |
75 | 73 | omise_card_number_field = 'number',
|
76 |
| - omise_card_fields = { |
77 |
| - 'name' : $( '#omise_card_name' ), |
78 |
| - 'number' : $( '#omise_card_number' ), |
| 74 | + omise_card_state_field = 'state', |
| 75 | + omise_card_fields = { |
| 76 | + 'name' : $( '#omise_card_name' ), |
| 77 | + 'number' : $( '#omise_card_number' ), |
79 | 78 | 'expiration_month' : $( '#omise_card_expiration_month' ),
|
80 |
| - 'expiration_year' : $( '#omise_card_expiration_year' ), |
81 |
| - 'security_code' : $( '#omise_card_security_code' ) |
| 79 | + 'expiration_year' : $( '#omise_card_expiration_year' ), |
| 80 | + 'security_code' : $( '#omise_card_security_code' ), |
| 81 | + 'city' : $( '#billing_city' ), |
| 82 | + 'state' : $( '#billing_state' ), |
| 83 | + 'country' : $( '#billing_country' ), |
| 84 | + 'postal_code' : $( '#billing_postcode' ), |
| 85 | + 'street1' : $( '#billing_address_1' ) |
82 | 86 | };
|
83 | 87 |
|
84 | 88 | $.each( omise_card_fields, function( index, field ) {
|
85 |
| - omise_card[ index ] = (index === omise_card_number_field) ? field.val().replace(/\s/g, '') : field.val(); |
| 89 | + if (index === omise_card_state_field) { |
| 90 | + omise_card[ index ] = field.find(":selected").text(); |
| 91 | + } else { |
| 92 | + omise_card[ index ] = (index === omise_card_number_field) ? field.val().replace(/\s/g, '') : field.val(); |
| 93 | + } |
| 94 | + |
86 | 95 | if ( "" === omise_card[ index ] ) {
|
87 | 96 | errors.push( omise_params[ 'required_card_' + index ] );
|
88 | 97 | }
|
|
101 | 110 | Omise.createToken("card", omise_card, function (statusCode, response) {
|
102 | 111 | if (statusCode == 200) {
|
103 | 112 | $.each( omise_card_fields, function( index, field ) {
|
104 |
| - field.val( '' ); |
| 113 | + const sensitiveDataIndex = ['name', 'number', 'expiration_year', 'expiration_month', 'security_code']; |
| 114 | + if (sensitiveDataIndex.includes(index)) { |
| 115 | + field.val( '' ); |
| 116 | + } |
105 | 117 | } );
|
106 | 118 | $form.append( '<input type="hidden" class="omise_token" name="omise_token" value="' + response.id + '"/>' );
|
107 | 119 | $form.submit();
|
108 | 120 | } else {
|
109 | 121 | handleTokensApiError(response);
|
110 | 122 | };
|
111 | 123 | });
|
112 |
| - }else{ |
| 124 | + } else { |
113 | 125 | showError( omise_params.cannot_load_omisejs + '<br/>' + omise_params.check_internet_connection );
|
114 | 126 | $form.unblock();
|
115 | 127 | }
|
|
0 commit comments