Files
iD/js/id/operations/move.js
T
2013-01-29 13:18:23 -05:00

19 lines
403 B
JavaScript

iD.operations.Move = function(entityId, mode) {
var operation = function() {
mode.controller.enter(iD.modes.MoveWay(entityId));
};
operation.available = function(graph) {
return graph.entity(entityId).type === 'way';
};
operation.enabled = function() {
return true;
};
operation.id = "move";
operation.title = "Move";
return operation;
};