summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/PaymentView.js
blob: e43dfc1c33854721b924a6e2a6a1516eb6935dd9 (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
28
29
30
31
32
33
34
35
36
37
38
var PaymentView = View.extend({
  
  el: "#payment",

  events: {
  },

  initialize: function(){
    this.address = new AddressView ({ parent: this })
  },

  show: function(){
    document.body.className = "payment"
  },

})

var AddressView = View.extend({
  
  template: $("#address_template").html(),
  
  events: {
  },
  
  initialize: function(opt){
    this.parent = opt.parent
  },
  
  build: function(){
  },
  
  deserialize: function(){
  },
  
  serialize: function(){
  },

})