From 1f3c1da8c796b785902448f7c9f934ba5146f47b Mon Sep 17 00:00:00 2001 From: Sarah Hale Date: Thu, 18 Jun 2015 14:53:35 -0700 Subject: [PATCH] [Browse composition] Alert user When the user attempts a disallowed drag and drop composition, the browser will alert them to this. Issue 11. --- platform/representation/src/gestures/DropGesture.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platform/representation/src/gestures/DropGesture.js b/platform/representation/src/gestures/DropGesture.js index e4f1154262..b2414da07b 100644 --- a/platform/representation/src/gestures/DropGesture.js +++ b/platform/representation/src/gestures/DropGesture.js @@ -110,9 +110,8 @@ define( } } else { // Informs user that drag and drop is not allowed. - // window.alert("Cannot drag and drop objects during browse mode."); + window.alert("Cannot drag and drop objects during browse mode."); } - } // We can only handle drops if we have access to actions...