Fixed problem with double click handler not being bound correctly

This commit is contained in:
Andreas Stöckel 2011-06-03 11:21:36 +00:00
parent 2bba68b575
commit 3a8d1e3227

View File

@ -104,7 +104,7 @@ function egwPopupActionImplementation()
if (egwIsMobile()) {
$(_node).bind('click', defaultHandler);
} else {
_node.dblclick = defaultHandler;
_node.ondblclick = defaultHandler;
}
}