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

  populate: function(){
  },

})