summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/ProfileView.js
blob: eb738a04468c9e069b4d77aa0bf58b11e87b51da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var ProfileView = View.extend({
  
  el: "#profile",
  
  events: {
  },
  
  initialize: function(){
  },

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