summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/orders/SingleOrder.js
blob: 21416401bad2ceef80250afd21c08aa8a189f82a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var SingleOrder = ScrollableView.extend({

  el: "#single_order",

  template: $("#single_order .template"),

  initialize: function(opt){
    this.parent = opt.parent
    this.scroller = new IScroll('#single_order', app.iscroll_options)
  },

  show: function(id){
    document.body.className = "orders"
    app.orders.el.className = "single"
    this.deferScrollToTop()
  },

})