summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartSummary.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-11-23 19:52:41 -0500
committerJules Laplace <jules@okfoc.us>2015-11-23 19:52:41 -0500
commite7703ca78d5b3f63a98f995c128db3a963eac7b4 (patch)
tree976bedb17af3b67946573e4274177e7e2c0c9fca /StoneIsland/www/js/lib/cart/CartSummary.js
parent057742265e771dfd75ad9eddb3414e807e110995 (diff)
add to cart race condition
Diffstat (limited to 'StoneIsland/www/js/lib/cart/CartSummary.js')
-rw-r--r--StoneIsland/www/js/lib/cart/CartSummary.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/StoneIsland/www/js/lib/cart/CartSummary.js b/StoneIsland/www/js/lib/cart/CartSummary.js
index ce7ae650..7a5a1cfe 100644
--- a/StoneIsland/www/js/lib/cart/CartSummary.js
+++ b/StoneIsland/www/js/lib/cart/CartSummary.js
@@ -37,6 +37,7 @@ var CartSummary = ScrollableView.extend({
load: function(){
this.$loader.show()
+ app.footer.show("SHIPPING &gt;", "CANCEL")
sdk.cart.get_status({
success: this.populate.bind(this),
error: this.empty.bind(this),
@@ -45,9 +46,10 @@ var CartSummary = ScrollableView.extend({
populate: function(data){
this.data = data
-console.log(data)
+
+ console.log("CART", data)
+
this.$loader.hide()
- app.footer.show("SHIPPING &gt;", "CANCEL")
this.update_counts()