summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/nav/CreditCardView.js
blob: 6668053d8229a3ec4a3c5b7b5df609ccaf099dc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
var CreditCardView = View.extend({
  
  template: $("#creditcard_template").html(),
  
  events: {
  },
  
  initialize: function(opt){
    this.parent = opt.parent
  },
  
  build: function(){
  },
  
  deserialize: function(){
  },
  
  serialize: function(){
  },

})