summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ui/site/ProfileView.js
blob: 76d733c7d73214fbe711f07f8d881c9a27d16d57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
var ProfileView = View.extend({

  el: ".profilepage",

  events: {
    "change #profile_avatar": "uploadAvatar",
  },

	initialize: function() {
	},

	load: function() {
		var classes = ['one', 'two', 'three', 'four',
		               'five', 'six', 'seven', 'eight',
		               'nine', 'ten', 'eleven', 'twelve',
		               'thirteen'];
		$(".bio").addClass(choice(classes));
		
		this.projectList = new ProjectList ()
	},
	
	uploadAvatar: function(){
	}

})