diff options
Diffstat (limited to 'StoneIsland/www/js/lib/cart')
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartBilling.js | 5 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartShipping.js | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/StoneIsland/www/js/lib/cart/CartBilling.js b/StoneIsland/www/js/lib/cart/CartBilling.js index f3c9cbe2..447fae0f 100644 --- a/StoneIsland/www/js/lib/cart/CartBilling.js +++ b/StoneIsland/www/js/lib/cart/CartBilling.js @@ -1,11 +1,12 @@ var CartBilling = View.extend({ - el: "#billing", + el: "#cart_billing", events: { }, - + initialize: function(){ + this.address = new AddressView () }, })
\ 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 beaf6bd2..32b25bb9 100644 --- a/StoneIsland/www/js/lib/cart/CartShipping.js +++ b/StoneIsland/www/js/lib/cart/CartShipping.js @@ -1,11 +1,12 @@ var CartShipping = View.extend({ - el: "#shipping", + el: "#cart_shipping", events: { }, - + initialize: function(){ + this.address = new AddressView () }, })
\ No newline at end of file |
