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

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

})