blob: d22029c79c1020212d9c2932c2d0aaa6fb81902b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
var ShippingView = View.extend({
el: "#shipping",
events: {
},
initialize: function(){
this.address = new AddressView ({ parent: this })
},
show: function(){
document.body.className = "shipping"
},
})
|