diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-09-06 10:40:33 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-09-06 10:40:33 -0400 |
| commit | f496fe34ecebd92b7c43b2beface68893adcae97 (patch) | |
| tree | e09b02c91454541c4fef33bbae56a328a9304534 /public/assets/js/lib/views/index/index.js | |
| parent | 8e25a37aced0399ad13e2c184c618119ec3da16d (diff) | |
port several formatting functions from bucky
Diffstat (limited to 'public/assets/js/lib/views/index/index.js')
| -rw-r--r-- | public/assets/js/lib/views/index/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/public/assets/js/lib/views/index/index.js b/public/assets/js/lib/views/index/index.js index cb648fa..473df38 100644 --- a/public/assets/js/lib/views/index/index.js +++ b/public/assets/js/lib/views/index/index.js @@ -7,7 +7,8 @@ var IndexView = View.extend({ initialize: function(opt){ // opt.parent = parent - this.hootbox = new HootboxView ({ parent: this }) + this.hootbox = new HootBox ({ parent: this }) + this.threadbox = new ThreadBox ({ parent: this }) this.load() }, @@ -17,6 +18,7 @@ var IndexView = View.extend({ populate: function(data){ this.hootbox.load(data.hootbox) + this.threadbox.load(data.threads) }, success: function(){ |
