mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
Comment out intentions
This commit is contained in:
@@ -9,6 +9,9 @@ iD.actions.AddPlace = {
|
||||
enter: function() {
|
||||
d3.selectAll('button').classed('active', false);
|
||||
d3.selectAll('button#place').classed('active', true);
|
||||
|
||||
// Bind clicks to the map to 'add a place' and
|
||||
// add little floaty place
|
||||
},
|
||||
exit: function() {
|
||||
d3.selectAll('button#place').classed('active', false);
|
||||
@@ -24,6 +27,9 @@ iD.actions.AddRoad = {
|
||||
enter: function() {
|
||||
d3.selectAll('button').classed('active', false);
|
||||
d3.selectAll('button#road').classed('active', true);
|
||||
|
||||
// Bind clicks to the map to 'add a road' and
|
||||
// add little floaty point
|
||||
},
|
||||
exit: function() {
|
||||
d3.selectAll('button#road').classed('active', false);
|
||||
@@ -39,6 +45,9 @@ iD.actions.AddArea = {
|
||||
enter: function() {
|
||||
d3.selectAll('button').classed('active', false);
|
||||
d3.selectAll('button#area').classed('active', true);
|
||||
|
||||
// Bind clicks to the map to 'add an area' and
|
||||
// add little floaty point
|
||||
},
|
||||
exit: function() {
|
||||
d3.selectAll('button#area').classed('active', false);
|
||||
|
||||
Reference in New Issue
Block a user