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

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

  populate: function(){
  },

})