summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartConfirm.js
blob: 8e629e57e6d6fce450237e5a4bc2c701a697af58 (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 CartConfirm = View.extend({
  
  el: "#cart_confirm",
  
  events: {
  },
  
  initialize: function(){
  },
  
  show: function(){
    document.body.className = "cart"
    app.cart.el.className = "confirm"
    app.footer.show("PLACE ORDER", "CANCEL")
  },
  
  save: function(){
  },
  
  cancel: function(){
  },

})