diff options
Diffstat (limited to 'public/assets/js/lib/views/index/index.js')
| -rw-r--r-- | public/assets/js/lib/views/index/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/public/assets/js/lib/views/index/index.js b/public/assets/js/lib/views/index/index.js index 473df38..3d4dc72 100644 --- a/public/assets/js/lib/views/index/index.js +++ b/public/assets/js/lib/views/index/index.js @@ -9,6 +9,7 @@ var IndexView = View.extend({ // opt.parent = parent this.hootbox = new HootBox ({ parent: this }) this.threadbox = new ThreadBox ({ parent: this }) + this.lastlog = new LastLog ({ parent: this }) this.load() }, @@ -19,6 +20,7 @@ var IndexView = View.extend({ populate: function(data){ this.hootbox.load(data.hootbox) this.threadbox.load(data.threads) + this.lastlog.load(data.lastlog) }, success: function(){ |
