From 8f7dcd2018d41a35b90cbb27369aa081322c4b7c Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Tue, 7 Apr 2015 20:40:26 -0700 Subject: [PATCH] [Containment] Fire compose instead of link Fire compose instead of link on drop, since this will match usage for move/copy/link in the future. WTD-962. --- platform/representation/src/gestures/DropGesture.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/representation/src/gestures/DropGesture.js b/platform/representation/src/gestures/DropGesture.js index 1b6033a28c..4f1059bbec 100644 --- a/platform/representation/src/gestures/DropGesture.js +++ b/platform/representation/src/gestures/DropGesture.js @@ -55,7 +55,7 @@ define( if (selectedObject) { // TODO: Vary this based on modifier keys action = actionCapability.getActions({ - key: 'link', + key: 'compose', selectedObject: selectedObject })[0];