summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/ShippingView.js
blob: 37ba9df994332904a1500b2421d3baa2e8703f1e (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 = View.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(){
  },

})