From cb2f8b2ca3522ac76958006331652364454b747e Mon Sep 17 00:00:00 2001 From: Saman Bemel-Benrud Date: Tue, 19 Feb 2013 16:38:20 -0500 Subject: [PATCH] adding lasso class to body. --- js/id/ui/lasso.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/id/ui/lasso.js b/js/id/ui/lasso.js index 4644364c3..3cfe02ac1 100644 --- a/js/id/ui/lasso.js +++ b/js/id/ui/lasso.js @@ -7,6 +7,8 @@ iD.ui.Lasso = function() { function lasso(selection) { + d3.select('#iD').classed('lasso', true); + group = selection.append('g') .attr('class', 'lasso hide'); @@ -54,6 +56,7 @@ iD.ui.Lasso = function() { d3.select(this).remove(); })); } + d3.select('#iD').classed('lasso', false); }; return lasso;