Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Javascript options property names incorrect in Checkout.cshtml line 118... #9

Open
dkimbell13 opened this issue Jun 25, 2020 · 0 comments

Comments

@dkimbell13
Copy link

With the Ptsv2paymentsTokenInformation class in the Token action of the HomeController in the flex-microform-sample project it requires the generated token to have the correct expiration month and year property names and values added when the token is created.

Currently it is using the following options definition on line 118 of the Checkout.cshtml file...

var options = {
     cardExpirationMonth: expMonth.value,
     cardExpirationYear: expYear.value
};

The above options do not work. However...

var options = {
     expirationMonth: expMonth.value,
     expirationYear: expYear.value 
};

The above options do work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant