We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7def8e commit ac050f0Copy full SHA for ac050f0
index.html
@@ -11,7 +11,7 @@
11
<link rel="stylesheet" type=text/css href="css/viz.css">
12
13
<body id="demo">
14
- <div id="header"> </div>
+ <div id="header"></div>
15
<div id="plots"></div>
16
</body>
17
js/viz.js
@@ -14,6 +14,9 @@ bb.viz = function(data) {
.chrm(chrm)
.step(2);
+ plots.selectAll().remove();
18
+ d3.select(".current-region").remove();
19
+
20
main.append("div")
21
.attr("class", "current-region")
22
.text(chrm + ":" + start + "-" + stop);
0 commit comments