summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/LogoutView.js
blob: d5b70aff82391afe8bd9b4d0df1219dbd2b088ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var LogoutView = View.extend({
  
  el: "#logout",
  
  events: {
  },
  
  show: function(){
    document.body.className = "logout"
  },
  
  submit: function(e){
    e.preventDefault()
  },
  
  success: function(){
    // change login in ui to logout or whatever
  },

})