@depay/widgets 6.9.1 → 6.9.2
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.
- package/dist/esm/index.bundle.js +4 -1
- package/dist/esm/index.js +4 -1
- package/dist/umd/index.bundle.js +4 -1
- package/dist/umd/index.js +4 -1
- package/package.json +1 -1
package/dist/esm/index.bundle.js
CHANGED
|
@@ -70242,7 +70242,7 @@ var TrackingProvider = (function (props) {
|
|
|
70242
70242
|
if (!!item.message.forward_to) {
|
|
70243
70243
|
setTimeout(function () {
|
|
70244
70244
|
props.document.location.href = item.message.forward_to;
|
|
70245
|
-
},
|
|
70245
|
+
}, 200);
|
|
70246
70246
|
}
|
|
70247
70247
|
}
|
|
70248
70248
|
};
|
|
@@ -70324,6 +70324,9 @@ var TrackingProvider = (function (props) {
|
|
|
70324
70324
|
response.json().then(function (data) {
|
|
70325
70325
|
if (data && data.forward_to) {
|
|
70326
70326
|
setForwardTo(data.forward_to);
|
|
70327
|
+
setTimeout(function () {
|
|
70328
|
+
props.document.location.href = data.forward_to;
|
|
70329
|
+
}, 100);
|
|
70327
70330
|
}
|
|
70328
70331
|
});
|
|
70329
70332
|
clearInterval(pollingInterval);
|
package/dist/esm/index.js
CHANGED
|
@@ -3619,7 +3619,7 @@ var TrackingProvider = (function (props) {
|
|
|
3619
3619
|
if (!!item.message.forward_to) {
|
|
3620
3620
|
setTimeout(function () {
|
|
3621
3621
|
props.document.location.href = item.message.forward_to;
|
|
3622
|
-
},
|
|
3622
|
+
}, 200);
|
|
3623
3623
|
}
|
|
3624
3624
|
}
|
|
3625
3625
|
};
|
|
@@ -3701,6 +3701,9 @@ var TrackingProvider = (function (props) {
|
|
|
3701
3701
|
response.json().then(function (data) {
|
|
3702
3702
|
if (data && data.forward_to) {
|
|
3703
3703
|
setForwardTo(data.forward_to);
|
|
3704
|
+
setTimeout(function () {
|
|
3705
|
+
props.document.location.href = data.forward_to;
|
|
3706
|
+
}, 100);
|
|
3704
3707
|
}
|
|
3705
3708
|
});
|
|
3706
3709
|
clearInterval(pollingInterval);
|
package/dist/umd/index.bundle.js
CHANGED
|
@@ -70248,7 +70248,7 @@
|
|
|
70248
70248
|
if (!!item.message.forward_to) {
|
|
70249
70249
|
setTimeout(function () {
|
|
70250
70250
|
props.document.location.href = item.message.forward_to;
|
|
70251
|
-
},
|
|
70251
|
+
}, 200);
|
|
70252
70252
|
}
|
|
70253
70253
|
}
|
|
70254
70254
|
};
|
|
@@ -70330,6 +70330,9 @@
|
|
|
70330
70330
|
response.json().then(function (data) {
|
|
70331
70331
|
if (data && data.forward_to) {
|
|
70332
70332
|
setForwardTo(data.forward_to);
|
|
70333
|
+
setTimeout(function () {
|
|
70334
|
+
props.document.location.href = data.forward_to;
|
|
70335
|
+
}, 100);
|
|
70333
70336
|
}
|
|
70334
70337
|
});
|
|
70335
70338
|
clearInterval(pollingInterval);
|
package/dist/umd/index.js
CHANGED
|
@@ -3614,7 +3614,7 @@
|
|
|
3614
3614
|
if (!!item.message.forward_to) {
|
|
3615
3615
|
setTimeout(function () {
|
|
3616
3616
|
props.document.location.href = item.message.forward_to;
|
|
3617
|
-
},
|
|
3617
|
+
}, 200);
|
|
3618
3618
|
}
|
|
3619
3619
|
}
|
|
3620
3620
|
};
|
|
@@ -3696,6 +3696,9 @@
|
|
|
3696
3696
|
response.json().then(function (data) {
|
|
3697
3697
|
if (data && data.forward_to) {
|
|
3698
3698
|
setForwardTo(data.forward_to);
|
|
3699
|
+
setTimeout(function () {
|
|
3700
|
+
props.document.location.href = data.forward_to;
|
|
3701
|
+
}, 100);
|
|
3699
3702
|
}
|
|
3700
3703
|
});
|
|
3701
3704
|
clearInterval(pollingInterval);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depay/widgets",
|
|
3
3
|
"moduleName": "DePayWidgets",
|
|
4
|
-
"version": "6.9.
|
|
4
|
+
"version": "6.9.2",
|
|
5
5
|
"description": "Web3 Payments with any token. DePay simplifies and improves Web3 Payments with the power of DeFi. Accept any token with on-the-fly conversion.",
|
|
6
6
|
"main": "./dist/umd/index.js",
|
|
7
7
|
"module": "./dist/esm/index.js",
|