Files
iD/js/id/actions/add_way.js
John Firebaugh 3e45afbc5e Move history annotation to History#perform/replace
Actions are too low-level for annotations.
2012-12-07 10:35:39 -05:00

6 lines
110 B
JavaScript

iD.actions.AddWay = function(way) {
return function(graph) {
return graph.replace(way);
};
};