summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/ProfileView.js
blob: b93dcbc533ff481c0792533197aca47fef42b75a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var ProfileView = View.extend({
  
  el: "#profile",
  
  events: {
  },
  
  initialize: function(){
    this.$form = this.$("form")
    this.$msg = this.$(".msg")
  },

  show: function(){
    app.footer.show("SAVE", "CANCEL")
    document.body.className = "profile"
  },

  save: function(){
  },

})