summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartConfirm.js
blob: 659d36e67a03484756e72ac9b1257a3c9344c566 (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
var CartConfirm = View.extend({
  
  el: "#cart_confirm",
  
  events: {
  },
  
  initialize: function(){
    this.scroller = new IScroll('#cart_confirm', app.iscroll_options)
  },
  
  show: function(){
    document.body.className = "cart"
    app.cart.el.className = "confirm"
    app.footer.show("PLACE ORDER", "CANCEL")
    this.deferScrollToTop()
  },

  populate: function(){
  },

  save: function(){
  },
  
  cancel: function(){
  },

})