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

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

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

  populate: function(){
  },

})