From 9ce295a01404757dcb00a3ec3c93d70b2854ac22 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Tue, 17 Apr 2012 16:54:18 +0200 Subject: [PATCH] Fixed event target for clipboard actions --- wcfsetup/install/files/js/WCF.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 6194a8a3fd..d1bf12e34e 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -998,7 +998,7 @@ WCF.Clipboard = { * @param object event */ _executeAction: function(event) { - var $listItem = $(event.target); + var $listItem = $(event.currentTarget); var $url = $listItem.data('url'); if ($url) { window.location.href = $url; -- 2.20.1