diff options
Diffstat (limited to 'public/assets/js/lib/views/HomeView.js')
| -rw-r--r-- | public/assets/js/lib/views/HomeView.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/public/assets/js/lib/views/HomeView.js b/public/assets/js/lib/views/HomeView.js new file mode 100644 index 0000000..ce786db --- /dev/null +++ b/public/assets/js/lib/views/HomeView.js @@ -0,0 +1,23 @@ +var HomeView = View.extend({ + + el: "body", + + events: { + }, + + grid_template: $("#grid_template").html(), + + initialize: function(){ + this.HeaderView = new HeaderView ({ parent: this }) + this.LinksView = new LinksView ({ parent: this }) + this.PhotoView = new PhotoView ({ parent: this }) + }, + + show: function(){ + this.LinksView.show() + }, + + done: false, + isFirstLoad: true, + +})
\ No newline at end of file |
