From: Magnus Kühn Date: Sun, 16 Jun 2013 10:36:27 +0000 (+0200) Subject: Allowing "autoOpen: false" on modal dialogs X-Git-Tag: 2.0.0_Beta_4~1^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=af2ddf45ea69ec74f748de7a7b03986867b78a87;p=GitHub%2FWoltLab%2FWCF.git Allowing "autoOpen: false" on modal dialogs --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index db67d0310b..5e79c83d6d 100755 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -8308,7 +8308,7 @@ $.widget('ui.wcfDialog', { if (this.options.modal) { this._overlay = $('#jsWcfDialogOverlay'); if (!this._overlay.length) { - this._overlay = $('
').css({ height: '100%', zIndex: 399 }).appendTo(document.body); + this._overlay = $('
').css({ height: '100%', zIndex: 399 }).hide().appendTo(document.body); } if (this.options.closable) {