summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/www/js/lib/cart')
-rw-r--r--StoneIsland/www/js/lib/cart/CartBilling.js2
-rw-r--r--StoneIsland/www/js/lib/cart/CartShipping.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/StoneIsland/www/js/lib/cart/CartBilling.js b/StoneIsland/www/js/lib/cart/CartBilling.js
index 447fae0f..ef9b8eff 100644
--- a/StoneIsland/www/js/lib/cart/CartBilling.js
+++ b/StoneIsland/www/js/lib/cart/CartBilling.js
@@ -6,7 +6,7 @@ var CartBilling = View.extend({
},
initialize: function(){
- this.address = new AddressView ()
+ this.address = new AddressView ({ parent: this })
},
}) \ No newline at end of file
diff --git a/StoneIsland/www/js/lib/cart/CartShipping.js b/StoneIsland/www/js/lib/cart/CartShipping.js
index 32b25bb9..23b8cdf0 100644
--- a/StoneIsland/www/js/lib/cart/CartShipping.js
+++ b/StoneIsland/www/js/lib/cart/CartShipping.js
@@ -6,7 +6,7 @@ var CartShipping = View.extend({
},
initialize: function(){
- this.address = new AddressView ()
+ this.address = new AddressView ({ parent: this })
},
}) \ No newline at end of file