caboose-store 0.0.13 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YTUzNTdjNzIyNGQwN2ZiZjM4YjAwMzg5MDY0OTAzYWRhZWNkYzEwYg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YzI2NWMxYTYzNDlmNWJjM2I1MzlhMzc3NzZmMWNhYTdjMDU1YmI0Yg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NGZlZjFiMDA0YzNlNDIzNjIzMGFiMzdkM2U3YzE3ZDA5M2M2ZWI0ZDc1ODM3
|
10
|
+
MDk2ZWVkNzZmOTU0MjQ4NDFkZTBlNGIwYzQ2Yzc0NmRjYzMxMTY1YWEzODEx
|
11
|
+
ZGE5YjgyMjIyMTY4NGE4MmViYjQ4ODkwMDk4NmE1NjZiMjk0Y2M=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MzY3MDE2NDMzNjY4OTdiYWJkMGU4ZWNiNDY3ZWVlYWQyY2I0ZjNlYjE5OTdk
|
14
|
+
NTg3ODMzOWUzYTRiOTY0ZDRkNDJhYjQxYzZiMDZjYzMyMjA5Yjk4NDdkNTYw
|
15
|
+
Njg5MzFmYTEyM2I5NmI2MDFjZjk1ZWNmZTI1MmY4ZGZmN2U2Zjc=
|
@@ -81,20 +81,8 @@ Caboose.Store.Modules.CheckoutStep4 = (function() {
|
|
81
81
|
return self
|
82
82
|
}).call(Caboose.Store);
|
83
83
|
|
84
|
-
function relay_handler()
|
84
|
+
function relay_handler(resp)
|
85
85
|
{
|
86
|
-
alert('Relay handler');
|
87
|
-
var iframe = $('#relay');
|
88
|
-
var form = $('#payment');
|
89
|
-
var resp = iframe.contents().find('#response');
|
90
|
-
|
91
|
-
if (!resp.length || form.length)
|
92
|
-
{
|
93
|
-
alert('No response found.');
|
94
|
-
return false;
|
95
|
-
}
|
96
|
-
|
97
|
-
resp = JSON.parse(resp.html());
|
98
86
|
if (resp.error)
|
99
87
|
$('#message').html("<p class='note error'>" + resp.error + "</p>");
|
100
88
|
else if (resp.success == true)
|