We will be off from 27/1 (Monday) to 31/1 (Friday) (GMT +7) for our Tet Holiday (Lunar New Year) in our country

Commit 7877b4e9 authored by Rik ter Beek's avatar Rik ter Beek Committed by GitHub

Merge pull request #315 from Adyen/bug/PW-595

PW-595 use default getData() for the adyen redirect payment method.
parents 5158eff5 43ef7d4a
...@@ -242,12 +242,8 @@ define( ...@@ -242,12 +242,8 @@ define(
}, },
/** Redirect to adyen */ /** Redirect to adyen */
continueToAdyen: function () { continueToAdyen: function () {
var self = this;
if (this.validate() && additionalValidators.validate()) { if (this.validate() && additionalValidators.validate()) {
var data = {}; this.placeRedirectOrder(this.getData());
data.method = self.method;
this.placeRedirectOrder(data);
return false; return false;
} }
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment