summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-03-17 18:55:31 +0100
committerJules Laplace <julescarbon@gmail.com>2018-03-17 18:55:31 +0100
commit8c0a0474ff9306ddaa5c54f616c8937c0bce099b (patch)
tree77feb04d370809ee2591f7eb608d99df555279b8
parent5eb7632633668006a54706c350f5c19ae0904233 (diff)
threadbox stray border line.. annoying fix
-rw-r--r--public/assets/js/lib/views/index/threadbox.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/public/assets/js/lib/views/index/threadbox.js b/public/assets/js/lib/views/index/threadbox.js
index 46ba9de..e3a5193 100644
--- a/public/assets/js/lib/views/index/threadbox.js
+++ b/public/assets/js/lib/views/index/threadbox.js
@@ -108,6 +108,8 @@ var ThreadBox = View.extend({
threads[0].first = true
threads[threads.length-1].last = true
threads.forEach(this.appendThread.bind(this))
+ threads[0].first = false
+ threads[threads.length-1].last = false
}
},