From 49f8374a12dc8e6c04fc6f4ad81522e51a771d97 Mon Sep 17 00:00:00 2001 From: TimStallard Date: Thu, 17 Aug 2017 11:21:36 +0100 Subject: [PATCH] Allowed top inputs to be used --- src/pageInteraction/dragDrop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pageInteraction/dragDrop.js b/src/pageInteraction/dragDrop.js index 0782316..919e4f6 100644 --- a/src/pageInteraction/dragDrop.js +++ b/src/pageInteraction/dragDrop.js @@ -71,7 +71,7 @@ $("#workspace").on("mousedown", ".block>.main,.block>.inputs", function(event){ } }); -$("#workspace").on("mousedown", ".block>.main input,.block>.main textarea", function(event){ //allow for clicking a textbox +$("#workspace").on("mousedown", ".block input,.block textarea", function(event){ //allow for clicking a textbox event.stopPropagation(); });