summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartView.js
blob: f958f716fcd012e61b4922752f0e0112df1779b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var CartView = View.extend({
  
  el: "#cart",
  
  events: {
  },
  
  initialize: function(){
  },

  show: function(){
    document.body.className = "cart"
  },

})