From 10eb33cbddfd4c22fca3c774fef6e208d0a10527 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Mon, 20 Oct 2014 15:03:31 +0000 Subject: [PATCH] Get drag out action working again --- phpgwapi/js/egw_action/egw_action_dragdrop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/js/egw_action/egw_action_dragdrop.js b/phpgwapi/js/egw_action/egw_action_dragdrop.js index a3ac2ae195..fb2bf4c694 100644 --- a/phpgwapi/js/egw_action/egw_action_dragdrop.js +++ b/phpgwapi/js/egw_action/egw_action_dragdrop.js @@ -166,7 +166,7 @@ function egwDragActionImplementation() for(var i = 0; i < groups.drag.length; i++) { // dragType 'file' says it can be dragged as a file - if(groups.drag[i].link.actionObj.dragType == 'file') + if(groups.drag[i].link.actionObj.dragType == 'file' || groups.drag[i].link.actionObj.dragType.indexOf('file') > -1) { action = groups.drag[i].link.actionObj; break;