diff options
| -rw-r--r-- | StoneIsland/www/index.html | 7 | ||||
| -rw-r--r-- | StoneIsland/www/js/sdk/auth.js | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html index 27426df0..cb14beee 100644 --- a/StoneIsland/www/index.html +++ b/StoneIsland/www/index.html @@ -125,7 +125,7 @@ <div class="content"> <script type="text/html" class="template"> <div data-id="{{id}}"> - <div class="body">{{body}}</div> + <div class="body">{{body}}</div> </div> </script> </div> @@ -251,6 +251,11 @@ <div class="fit">Fits Large</div> <div class="body"> </div> + <div class="sizing"> + <b>Sizing:</b> The products of this collaboration fit slightly larger than the classic Stone Island garments. + <br><br> + We suggest you choose a smaller size than yours. + </div> </div> </div> </div> diff --git a/StoneIsland/www/js/sdk/auth.js b/StoneIsland/www/js/sdk/auth.js index 294a862c..c1546532 100644 --- a/StoneIsland/www/js/sdk/auth.js +++ b/StoneIsland/www/js/sdk/auth.js @@ -16,6 +16,9 @@ var auth = sdk.auth = (function(){ auth.access_token = "" auth.user_id = -1 + + auth.next_view = null + auth.deferred_product = null // ios: integrate keychain api // android: cordova.file.externalRootDirectory api @@ -73,6 +76,7 @@ var auth = sdk.auth = (function(){ }) } auth.defer_add_to_cart = function(){ + // auth.deferred_product } auth.log_out = function(){ auth.access_token = "" |
