Skip to content

Commit

Permalink
Remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed Jan 24, 2013
1 parent 0009173 commit 4d74789
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions js/id/modes/draw_area.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ iD.modes.DrawArea = function(wayId) {
history.replace(iD.actions.MoveNode(node.id, map.mouseCoordinates()));
}

function mouseover() {
var datum = d3.select(d3.event.target).datum() || {};
d3.select('#map').classed('finish-area', datum.id === tailId);
}

function click() {
var datum = d3.select(d3.event.target).datum() || {};

Expand Down Expand Up @@ -112,7 +107,6 @@ iD.modes.DrawArea = function(wayId) {

surface
.on('mousemove.drawarea', mousemove)
.on('mouseover.drawarea', mouseover)
.on('click.drawarea', click);

keybinding
Expand Down

0 comments on commit 4d74789

Please sign in to comment.