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

  events: {
  },

  initialize: function(){
    this.$form = this.$("form")
    this.$msg = this.$(".msg")
    this.address = new AddressView ({ parent: this })
    this.scroller = new IScroll('#shipping', app.iscroll_options)
  },

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

})