summaryrefslogtreecommitdiff
path: root/new-reality/public/assets/js/lib/view/AboutView.js
blob: c2daf7086677168f59188d02cd270523e9092254 (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
var AboutView = View.extend({

  el: "#about",

  // template: liquid($('#tmpl-about').html()),

  events: {
  },

  initialize: function(options){
    options = options || {}
    var data = this.data = options.data
  },
  
  render: function(){
    if (this.rendered) return
    this.rendered = true
  },

  show: function(){
    document.body.className = "about"
    this.render(this.data)
  },

  hide: function(){
  },

})