From 374d93a1f65478c33446dfa25e89524a0dc021eb Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 18 May 2010 11:15:17 -0600 Subject: [PATCH] Bug #9037: Fix visibility style in IE 8 --- horde/js/ContextSensitive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/js/ContextSensitive.js b/horde/js/ContextSensitive.js index 580e39876..8c76ae927 100644 --- a/horde/js/ContextSensitive.js +++ b/horde/js/ContextSensitive.js @@ -281,7 +281,7 @@ var ContextSensitive = Class.create({ eltL = elt.getLayout(), h = eltL.get('border-box-height'); w = eltL.get('border-box-width'); - elt.hide().setStyle({ visibility: null }); + elt.hide().setStyle({ visibility: 'visible' }); // Make sure context window is entirely on screen if ((y + h) > v.height) { -- 2.11.0