mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
6 lines
192 B
JavaScript
6 lines
192 B
JavaScript
export function actionMoveMember(relationId, fromIndex, toIndex) {
|
|
return function(graph) {
|
|
return graph.replace(graph.entity(relationId).moveMember(fromIndex, toIndex));
|
|
};
|
|
}
|