Please find attached a small patch to tools.expose-1.0.5.js which causes Expose to use Brandon Aaron's bgiframe plugin to fix/workaround IE6 z-index bugs, if bgiframe is already loaded.
I would prefer not to maintain my own fork of Expose in order to use this patch. Please let me know if there's anything I can do to help this patch make it in to the next release of Expose.
Thank you!
Emmanuel Gomez
diff --git a/public/javascripts/tools.expose-1.0.5.js b/public/javascripts/tools.expose-1.0.5.js
index 7bf5b8a..0ddb010 100644
--- a/public/javascripts/tools.expose-1.0.5.js
+++ b/public/javascripts/tools.expose-1.0.5.js
@@ -115,8 +115,11 @@
display:'none',
opacity: 0,
zIndex:conf.zIndex
});
+ // fix select boxes popping through mask in IE6
+ if ($.fn.bgiframe) { mask.bgiframe(); }
// id
if (conf.maskId) { mask.attr("id", conf.maskId); }
I would prefer not to maintain my own fork of Expose in order to use this patch. Please let me know if there's anything I can do to help this patch make it in to the next release of Expose.
Thank you!
Emmanuel Gomez
