diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-11-11 02:28:43 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-11-11 02:28:43 -0500 |
| commit | 93b3bded0286b2ec2e8b2f8210590ae7d052f09f (patch) | |
| tree | 967b61a08cae3efe34b2e2eab801d5ea13780238 /StoneIsland/www/js/lib/cart/CartShipping.js | |
| parent | 1d0bff6384549b05927690e60c8bf708eda834bf (diff) | |
make footer better
Diffstat (limited to 'StoneIsland/www/js/lib/cart/CartShipping.js')
| -rw-r--r-- | StoneIsland/www/js/lib/cart/CartShipping.js | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/StoneIsland/www/js/lib/cart/CartShipping.js b/StoneIsland/www/js/lib/cart/CartShipping.js index 22b2794a..d4c98157 100644 --- a/StoneIsland/www/js/lib/cart/CartShipping.js +++ b/StoneIsland/www/js/lib/cart/CartShipping.js @@ -6,11 +6,20 @@ var CartShipping = View.extend({ }, initialize: function(){ + this.$form = this.$("form") + this.$msg = this.$(".msg") this.address = new AddressView ({ parent: this }) }, - + show: function(){ - document.body.className = "cart_shipping" + app.cart.el.className = "shipping" + app.footer.show("PAYMENT >", "CANCEL") + }, + + save: function(){ + }, + + cancel: function(){ }, })
\ No newline at end of file |
