From 2bee924f17e9ba687dc5e184aeb96c3d0f793212 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Thu, 5 Jan 2012 22:54:29 +0100 Subject: [PATCH] Fixed dialog opacity being interrupted in WebKit Fixes #353 --- wcfsetup/install/files/js/WCF.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 81e1706094..0138898cd2 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -3775,6 +3775,9 @@ $.widget('ui.wcfDialog', { // stop current process this._container.stop(); this._content.stop(); + + // set dialog to be fully opaque, should prevent weird bugs in WebKit + this._container.show().css('opacity', 1.0); } // calculate dimensions -- 2.20.1