You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 4, 2024. It is now read-only.
* Fix reference to `window` in nodom implementation
* Capture referrer page as part of the encrypted blob
* Fix installation problem after relocations ( issue #33 ) because of
wrong naming in bower.json
* Generation time will now be validated
* Fix card type detection on China Union Pay vs Maestro
Configure the attribute to identify fields to be encrypted. Useful when you have multiple payment options within the same form, and want to bind each set to its own CSE handler.
11
+
Configure the attribute to identify fields to be encrypted. Useful when you have multiple payment options within the same form, and want to bind each set to it's own CSE handler.
12
12
13
13
***boolean `[enableValidations = true] `**
14
14
@@ -32,13 +32,13 @@ The `createEncryption ( key , `*`options`*` )` and `createEncryptedForm ( form,
32
32
33
33
Custom handler to be called on submit of the form.
34
34
35
-
The callback function will be executed after encryption has taken place, and will receive the original submit event as its first argument.
35
+
The callback function will be executed after encryption has taken place, and will receive the original submit event as it's first argument.
36
36
37
37
***function `[onvalidate]`**
38
38
39
39
Handler to be called after on validation of the form.
40
40
41
-
The callback function will be executed after the validation routine of the CSE form has been completed and will receive the validity status of the form as its first argument.
41
+
The callback function will be execyted after the validation routine of the CSE form has been completed and will receive the validaty status of the form as it's first argument.
Copy file name to clipboardExpand all lines: README.md
+33-21
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ The library currently offers two integration methods:
10
10
The library currently has three inclusion / loading styling:
11
11
- Download `adyen.encrypt.min.js` and host it yourself. Both HTML based as JavaScript only integration is supported.
12
12
- Download `adyen.encrypt.nodom.min.js` and host it yourself. Only supports JavaScript only integration.
13
-
- Adyen Hosted version in which the public key is embedded in the JavaScript. This integration makes sure you always have the latest security patches, and don't have to keep your public key in sync with the Adyen servers manually. See [Adyen Hosted Form Based Integration](HostedCSE.md) for more details.
13
+
- Adyen Hosted version in which the public key is embedded in the JavaScript. This integration makes sure you always have the latest security patches, and don't have to keep your public key in sync with the Adyen servers manually. See [Adyen Hosted Form Based Integration](HostedCSE.md) for more details.
14
14
15
15
16
16
## HTML based integration
@@ -49,7 +49,7 @@ Enricht a form in your page with the CSE onSubmit and (optionally) validation be
49
49
// The form element to encrypt
50
50
var form =document.getElementById('adyen-encrypted-form');
51
51
// The public key
52
-
var key ="your key as retrieved from the Adyen Customer Area Web Service User page";
52
+
var key ="your key as retrieved from the Adyen Customer Area Web Service User page";
53
53
// Form and encryption options. See adyen.encrypt.simple.html for details
0 commit comments