From 3a8d1e322789cdd557faa81cf8bb9fb5b3a8dbfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20St=C3=B6ckel?= Date: Fri, 3 Jun 2011 11:21:36 +0000 Subject: [PATCH] Fixed problem with double click handler not being bound correctly --- phpgwapi/js/egw_action/egw_action_popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/js/egw_action/egw_action_popup.js b/phpgwapi/js/egw_action/egw_action_popup.js index 0908493749..f6b9bb27c8 100644 --- a/phpgwapi/js/egw_action/egw_action_popup.js +++ b/phpgwapi/js/egw_action/egw_action_popup.js @@ -104,7 +104,7 @@ function egwPopupActionImplementation() if (egwIsMobile()) { $(_node).bind('click', defaultHandler); } else { - _node.dblclick = defaultHandler; + _node.ondblclick = defaultHandler; } }