summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/js/lib/blogs/ArchiveView.js
blob: 742ee0f2e2294f0330636cb4e28f49961224db4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var ArchiveView = View.extend({
  
  el: "#archive",
  template: $("#archive .template").html(),
  
  events: {
  },
  
  initialize: function(){
    this.$content = this.$(".content")
  },

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

  populate: function(){
  },

})