summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/ShippingView.js
blob: e7f44949aa552a9302f90b7731e71850a62dbd0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
var ShippingView = FormView.extend({
  
  el: "#shipping",

  events: {
  },

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

  show: function(){
    app.footer.show("SAVE", "CANCEL")
    document.body.className = "shipping"
  },
  
  save: function(){
  },

})