summaryrefslogtreecommitdiff
path: root/public/assets/js/lib/ProjectView.js
blob: f5e47bde191b9339401e1d56ea1b9ee804c1fb19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var ProjectView = View.extend({

  events: {
  },
  
  initialize: function(opt){
    this.gallery = new GalleryView ()
    this.project_id = this.$el.data("id")
  },
  
  show: function(){
  },
  
  hide: function(){
  },

})