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

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

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

  populate: function(){
  },

})