summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/nav/FooterView.js
blob: 76126102e159d1480b9ca67040d4b7f38a45a63f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
var FooterView = View.extend({
  
  el: "#footer",
  
  events: {
    "click .filter": "filter",
    "click .buynow": "buynow",
    "click .addtocart": "addtocart",
    "click .cancel": "cancel",
    "click .checkout": "checkout",
    "click .checkout_proceed": "checkout_proceed",
  },
  
  initialize: function(){
  },
  
  filter: function(){
  },
  buynow: function(){
  },
  addtocart: function(){
  },
  cancel: function(){
  },
  checkout: function(){
  },
  checkout_proceed: function(){
  },

})