@shift72/core-template 1.9.10 → 1.9.11
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [Unreleased](https://github.com/shift72/core-template/compare/1.9.
|
3
|
+
## [Unreleased](https://github.com/shift72/core-template/compare/1.9.11...HEAD)
|
4
4
|
|
5
5
|
### Added
|
6
6
|
|
@@ -8,6 +8,12 @@
|
|
8
8
|
|
9
9
|
### Fixed
|
10
10
|
|
11
|
+
## [1.9.11](https://github.com/shift72/core-template/compare/1.9.10...1.9.11)
|
12
|
+
|
13
|
+
### Added
|
14
|
+
|
15
|
+
- Support for Checkout sign in and sign up links.
|
16
|
+
|
11
17
|
## [1.9.10](https://github.com/shift72/core-template/compare/1.9.9...1.9.10)
|
12
18
|
|
13
19
|
### Added
|
package/kibble.json
CHANGED
package/package.json
CHANGED
@@ -80,11 +80,15 @@
|
|
80
80
|
window.Shift72CheckoutOptions = {
|
81
81
|
baseUrl: window.location.origin,
|
82
82
|
{{if useLocalDevCheckout}}checkoutDevServerUrl: '{{checkoutDevServer}}',{{end}}
|
83
|
+
options: {
|
83
84
|
links: {
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
85
|
+
library: `${window.location.origin}{{routeToPath("/library.html")}}`,
|
86
|
+
termsAndConditions: `${window.location.origin}{{routeToPath("/page/terms-and-conditions/")}}`,
|
87
|
+
deviceCompatibility: `${window.location.origin}{{routeToPath("/page/help/")}}`,
|
88
|
+
help: `${window.location.origin}{{routeToPath("/page/help/")}}`,
|
89
|
+
signIn: `${window.location.origin}{{routeToPath("/signin.html")}}`,
|
90
|
+
signUp: `${window.location.origin}{{routeToPath("/signup.html")}}`,
|
91
|
+
}
|
88
92
|
}
|
89
93
|
};
|
90
94
|
</script>
|