From: Alexander Ebert Date: Fri, 5 Aug 2011 12:21:05 +0000 (+0200) Subject: Providing reference to action proxy within init() X-Git-Tag: 2.0.0_Beta_1~1912 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=06c820f043c27b3e99429c4fb2f31692389b9549;p=GitHub%2FWoltLab%2FWCF.git Providing reference to action proxy within init() --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 2304cd33ef..7f1cb28805 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -510,7 +510,7 @@ WCF.Action.Proxy.prototype = { */ _init: function() { if ($.isFunction(this.options.init)) { - this.options.init(); + this.options.init(this); } $('').appendTo($('body'));