@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.10...HEAD)
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
@@ -194,5 +194,5 @@
194
194
  "pageSize": 0
195
195
  }
196
196
  ],
197
- "coreTemplateVersion": "1.9.10"
197
+ "coreTemplateVersion": "1.9.11"
198
198
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shift72/core-template",
3
- "version": "1.9.10",
3
+ "version": "1.9.11",
4
4
  "description": "Shift72 core template",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -0,0 +1,5 @@
1
+ {{extends "templates/application/application.jet"}}
2
+
3
+ {{block body()}}
4
+ <s72-shopping-embeddable></s72-shopping-embeddable>
5
+ {{end}}
@@ -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
- library: '{{routeToPath("/library.html")}}',
85
- termsAndConditions: '{{routeToPath("/page/terms-and-conditions/")}}',
86
- deviceCompatibility: '{{routeToPath("/page/help/")}}',
87
- help: '{{routeToPath("/page/help/")}}'
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>