Commit 55ff62f5eea8b7d0e3fb82d71183f46c8b686c5a
remove logging
Dominic Tarr committed on 8/14/2017, 5:36:42 AMParent: bece765b487127c47d7cd4da71eb2574d7218dde
Files changed
app/html/thread-card.js | changed |
app/html/thread-card.js | ||
---|---|---|
@@ -96,12 +96,9 @@ | ||
96 | 96 | ]) |
97 | 97 | |
98 | 98 | const lastReply = thread.replies && |
99 | 99 | lodash.maxBy(thread.replies, function (e) { return e.timestamp }) |
100 | - if(thread.replies) | |
101 | - console.log(thread.replies.map(function (r) { | |
102 | - return r.timestamp - thread.timestamp | |
103 | - })) | |
100 | + | |
104 | 101 | var replySample = lastReply ? subject(lastReply) : null |
105 | 102 | |
106 | 103 | return h('div.thread', link(thread), [ |
107 | 104 | h('div.context', threadIcon(thread)), |
@@ -115,4 +112,5 @@ | ||
115 | 112 | ]) |
116 | 113 | }}}} |
117 | 114 | } |
118 | 115 | |
116 | + |
Built with git-ssb-web