From e062cfc6012d9b71379d0b41e7e52dcf5ae5e872 Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Mon, 3 Jun 2013 10:47:33 +0000 Subject: [PATCH] fix bug regarding the positioning of the drag n drop context menu --- 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 cf5129dbd5..8bfe626ca9 100644 --- a/phpgwapi/js/egw_action/egw_action_dragdrop.js +++ b/phpgwapi/js/egw_action/egw_action_dragdrop.js @@ -351,7 +351,7 @@ function egwDropActionImplementation() // object and the drop action object share same // set of properties. var popup = getPopupImplementation(); - var pos = popup._getPageXY(event); + var pos = popup._getPageXY(event.originalEvent); window.setTimeout(function() { popup.doExecuteImplementation(pos, selected, links, _context);