ng-easycommerce 0.0.553 → 0.0.555
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/README.md +4 -0
- package/assets/decidirFormEc.html +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
let my_awesome_script = document.createElement('script');
|
|
21
21
|
my_awesome_script.setAttribute('defer', 'defer')
|
|
22
22
|
my_awesome_script.setAttribute('src',
|
|
23
|
-
|
|
23
|
+
'https://live.decidir.com/static/v2.6.4/decidir.js'
|
|
24
24
|
);
|
|
25
25
|
document.head.appendChild(my_awesome_script);
|
|
26
26
|
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
|
|
299
299
|
modo ? (modo == 'prod' ? modo = false : modo = true): (modo = window.location.host.includes('easycommerce'))
|
|
300
300
|
|
|
301
|
-
const decidir = new Decidir(modo && modo ? urlSandbox : urlProduccion
|
|
301
|
+
const decidir = new Decidir(modo && modo ? urlSandbox : urlProduccion);
|
|
302
302
|
decidir.setPublishableKey(publicApiKey);
|
|
303
303
|
decidir.setTimeout(5000);
|
|
304
304
|
|