blob: 45abc303be339e8a1655e4433a0b26ec97e353a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
var LogoutView = View.extend({
el: "#logout",
events: {
},
show: function(){
document.body.className = "logout"
},
submit: function(e){
e.preventDefault()
},
success: function(){
},
})
|