summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ui/site/StaffView.js
blob: 115d4174e7087942a7de552d796b261274838558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var StaffView = View.extend({

	initialize: function() {
	},

	load: function() {
		$(".json").each(function(){
      $(this).JSONView( this.innerText )
    })

		this.projectList = new ProjectList ()
	}

})