summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/LogoutView.js
blob: 62c925eb1235e862c5356a8d42448c91bb5396be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
var LogoutView = View.extend({
  
  el: "#logout",
  
  events: {
  },
  
  show: function(){
    document.body.className = "logout"
    app.footer.hide()
  },

})