summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartThanks.js
blob: 9524ab83de2df230720d5c384b9fdda56a239f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
var CartThanks = View.extend({
  
  el: "#cart_thanks",
  
  events: {
  },
  
  initialize: function(){
  },
  
  show: function(){
    document.body.className = "cart"
    app.cart.el.className = "thanks"
    app.footer.show("< BACK TO COLLECTION")
    app.footer.hide()
  },
  
  ok: function(){
    app.router.go("store")
  },

})