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

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

  save: function(){
  },

})