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

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

})