diff options
Diffstat (limited to 'public/assets/js/lib/views/HomeView.js')
| -rw-r--r-- | public/assets/js/lib/views/HomeView.js | 21 |
1 files changed, 21 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..7e2ea24 --- /dev/null +++ b/public/assets/js/lib/views/HomeView.js @@ -0,0 +1,21 @@ +var HomeView = View.extend({ + + el: "body", + + events: { + }, + + grid_template: $("#grid_template").html(), + + initialize: function(){ + this.LinksView = new LinksView ({ parent: this }) + }, + + show: function(){ + this.LinksView.show() + }, + + done: false, + isFirstLoad: true, + +})
\ No newline at end of file |
