mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
Make context the first argument of operation objects Add Paste operation to edit menu when opening the context menu on a blank area of the map (close #2508)
17 lines
773 B
JavaScript
17 lines
773 B
JavaScript
export { operationCircularize } from './circularize';
|
|
export { operationContinue } from './continue';
|
|
export { operationCopy } from './copy';
|
|
export { operationDelete } from './delete';
|
|
export { operationDisconnect } from './disconnect';
|
|
export { operationDowngrade } from './downgrade';
|
|
export { operationExtract } from './extract';
|
|
export { operationMerge } from './merge';
|
|
export { operationMove } from './move';
|
|
export { operationOrthogonalize } from './orthogonalize';
|
|
export { operationPaste } from './paste';
|
|
export { operationReflectShort, operationReflectLong } from './reflect';
|
|
export { operationReverse } from './reverse';
|
|
export { operationRotate } from './rotate';
|
|
export { operationSplit } from './split';
|
|
export { operationStraighten } from './straighten';
|