From: Alexander Ebert Date: Sat, 30 May 2015 19:17:44 +0000 (+0200) Subject: Added method `getContentElement` to `UI/Confirmation` X-Git-Tag: 3.0.0_Beta_1~2302 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=95cb00d13889f584865e2162bc3e0b2ef9bf2967;p=GitHub%2FWoltLab%2FWCF.git Added method `getContentElement` to `UI/Confirmation` --- diff --git a/wcfsetup/install/files/js/WoltLab/WCF/UI/Confirmation.js b/wcfsetup/install/files/js/WoltLab/WCF/UI/Confirmation.js index e7bf4071b0..d82224396e 100644 --- a/wcfsetup/install/files/js/WoltLab/WCF/UI/Confirmation.js +++ b/wcfsetup/install/files/js/WoltLab/WCF/UI/Confirmation.js @@ -73,6 +73,15 @@ define(['Core', 'Language', 'UI/Dialog'], function(Core, Language, UIDialog) { }); }, + /** + * Returns content container element. + * + * @return {Element} content container element + */ + getContentElement: function() { + return _content; + }, + /** * Creates the dialog DOM elements. */