summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/nav/SearchView.js
blob: b477d72ff8de6a0ba1b2dbe393587c1de0a8ed16 (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")
    document.body.className = "search"
  },
  
  save: function(){
  },
  
})