Commit 2081d9f0 authored by Randall Leeds's avatar Randall Leeds

reverse chronological sort thread levels for now

fixes #45
parent 3439b237
......@@ -262,6 +262,11 @@ class Hypothesis extends Annotator
.classed('hyp-detail', true)
.classed('hyp-summary', false)
.sort (d, e) =>
n = d.message.annotation.created
m = e.message.annotation.created
(n < m) - (m < n)
.on 'mouseover', =>
d3.event.stopPropagation()
d3.select(d3.event.currentTarget).classed('hyp-hover', true)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment