summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/products/CollectionView.js
blob: 7e178a8a2ce325904abf6da5c8a1bd073fbf318b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var CollectionView = View.extend({
  
  el: "#collection",
  template: $("#collection .template").html(),

  events: {
  },
  
  initialize: function(){
    this.$content = this.$(".content")
  },

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

  populate: function(){
  },

})