Commit 899454a0 authored by Jehan Tremback's avatar Jehan Tremback Committed by Randall Leeds

inserting html instead of just text into heatmap pointers

parent c9f387cf
......@@ -177,7 +177,8 @@ class Hypothesis extends Annotator
.style 'top', (d) =>
"#{(@heatmap.index[d] + @heatmap.index[d+1]) / 2}px"
.text((d) => @heatmap.buckets[d].length)
.html (d) =>
"<div class='label'>#{@heatmap.buckets[d].length}</div><div class='svg'></div>"
.classed('upper', @heatmap.isUpper)
.classed('lower', @heatmap.isLower)
......
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