1 2 3 4 5 6 7 8 9 10 11 12 13 14
var LogoutView = View.extend({ el: "#logout", events: { }, show: function(){ document.body.className = "logout" app.footer.hide() app.account.log_out() }, })