blob: f21634a50e80a0fa6f1f1d6310f94307b62cbe4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
var SearchView = View.extend({
el: "#search",
events: {
},
show: function(){
app.footer.show("SEARCH", "CANCEL")
document.body.className = "search"
},
save: function(){
},
})
|