Skip to content
Prev Previous commit
Next Next commit
Add ID to target input filter
  • Loading branch information
aloyr committed Sep 19, 2017
commit 17a26cfd6b5d7a0430d58e990be17f04d8a4d38c
3 changes: 2 additions & 1 deletion src/vis-physical/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ var vis = d3.select('#app')
var wrapper = vis.append('div')
.classed('wrapper', true);

let filterDiv = wrapper.append('div');
let filterDiv = wrapper.append('div')
.attr('id', 'filter-wrapper');

let filterInput = filterDiv.append('input')
.attr('id', 'filter')
Expand Down