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

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

  populate: function(){
  },

})