From e6de98398b387e63fbd6e69bfc1f839c77164534 Mon Sep 17 00:00:00 2001 From: Ansis Brammanis Date: Fri, 29 Mar 2013 13:50:41 -0400 Subject: [PATCH] rename #iD to #id-container everywhere --- css/app.css | 2 +- index.html | 4 ++-- js/id/ui/lasso.js | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/css/app.css b/css/app.css index 73a1b2989..4888a813c 100644 --- a/css/app.css +++ b/css/app.css @@ -19,7 +19,7 @@ body { font-size: 15px; } -#iD { +#id-container { height: 100%; width: 100%; position: fixed; diff --git a/index.html b/index.html index 33f8eb4a0..5e12f7065 100644 --- a/index.html +++ b/index.html @@ -187,11 +187,11 @@ -
+
diff --git a/js/id/ui/lasso.js b/js/id/ui/lasso.js index 1af0e31f8..68ba5aec6 100644 --- a/js/id/ui/lasso.js +++ b/js/id/ui/lasso.js @@ -6,7 +6,7 @@ iD.ui.Lasso = function() { function lasso(selection) { - d3.select('#iD').classed('lasso', true); + d3.select('#id-container').classed('lasso', true); group = selection.append('g') .attr('class', 'lasso hide'); @@ -55,7 +55,7 @@ iD.ui.Lasso = function() { d3.select(this).remove(); })); } - d3.select('#iD').classed('lasso', false); + d3.select('#id-container').classed('lasso', false); }; return lasso;