From afc4a3fe45bd7c2e00505d0888b62a5f15e97ae5 Mon Sep 17 00:00:00 2001 From: Eric Rasmussen <erasmussen2@unl.edu> Date: Mon, 24 Aug 2009 15:18:09 +0000 Subject: [PATCH] fix for ie --- customindex/views/default/customindex/metatags.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/customindex/views/default/customindex/metatags.php b/customindex/views/default/customindex/metatags.php index 3e20cc3e..2607a299 100644 --- a/customindex/views/default/customindex/metatags.php +++ b/customindex/views/default/customindex/metatags.php @@ -30,6 +30,8 @@ function showLinks() { WDN.jQuery("#promoVideoList").show(); }; + +WDN.jQuery(window).load(function(){WDN.jQuery("#FE_InfoWindow").wrap("<div id='xxx'></div>");WDN.jQuery("#promoVideoList").hide();}); WDN.jQuery(document).ready(function(){ WDN.jQuery("#headlines>div").click(function(){ panelClicked = WDN.jQuery(this).attr("id").split('headline')[1]; @@ -42,8 +44,10 @@ function showLinks() { WDN.jQuery("#poster"+panelClicked+"").css({'z-index':'105'}); } if(WDN.jQuery(this).attr("id") == "headline1"){ - WDN.jQuery("#FE_InfoWindow").css({'z-index':'100'}); + WDN.jQuery("#xxx").show(); + WDN.jQuery("#FE_InfoWindow").css({'z-index':'200'}); } else { + WDN.jQuery("#xxx").hide(); WDN.jQuery("#FE_InfoWindow").css({'z-index':'0'}); } }); -- GitLab