From eea52a294b5d78a6a7ac973d85c6e40aadcac1b2 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 12 Oct 2012 21:08:07 +0200 Subject: [PATCH] Fixed event target within WCF.Action.Delete --- 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 b5379f65eb..4693202143 100755 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -1636,7 +1636,7 @@ WCF.Action.Delete = Class.extend({ * @param object event */ _click: function(event) { - var $target = $(event.target); + var $target = $(event.currentTarget); if ($target.data('confirmMessage')) { WCF.System.Confirmation.show($target.data('confirmMessage'), $.proxy(this._execute, this), { target: $target }); -- 2.20.1