summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartConfirm.js
blob: 4bce4db31fda6252080f8c3b6612e24355f645de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
var CartConfirm = View.extend({
  
  el: "#cart_confirm",
  
  events: {
  },
  
  initialize: function(){
  },
  
  show: function(){
    app.cart.el.className = "confirm"
    app.footer.show("PLACE ORDER", "CANCEL")
  },
  
  save: function(){
  },
  
  cancel: function(){
  },

})