summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartPayment.js
blob: b70e7f7353810716b69cb99b9798e7c7b03f353d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
var CartPayment = View.extend({
  
  el: "#cart_payment",
  
  events: {
  },

  initialize: function(){
    this.$form = this.$("form")
    this.$msg = this.$(".msg")
    this.address = new AddressView ({ parent: this })
    this.cc = new CreditCardView ({ parent: this })
  },

  show: function(){
    app.cart.el.className = "payment"
    app.footer.show("CONFIRM >", "CANCEL")
  },
  
  save: function(){
  },
  
  cancel: function(){
  },


})