Bug #9037: Fix visibility style in IE 8
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 18 May 2010 17:15:17 +0000 (11:15 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 18 May 2010 17:17:03 +0000 (11:17 -0600)
horde/js/ContextSensitive.js

index 580e398..8c76ae9 100644 (file)
@@ -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) {