diff --git a/functions.js b/functions.js index 02417db79..93592b1bb 100644 --- a/functions.js +++ b/functions.js @@ -1290,13 +1290,9 @@ function closeInfoBox(cleanup) { if (Element.visible("infoBoxShadow")) { Element.hide("dialog_overlay"); - - var shadow = $('infoBoxShadow'); - var box = $('infoBoxShadow'); - - Element.hide(shadow); + Element.hide("infoBoxShadow"); - if (cleanup) box.innerHTML = " "; + if (cleanup) $("infoBoxShadow").innerHTML = " "; enableHotkeys(); } @@ -1342,20 +1338,19 @@ function infobox_callback2(transport) { debug("infobox_callback2"); - if (!getInitParam("infobox_disable_overlay")) { - Element.show("dialog_overlay"); - } - var box = $('infoBox'); - var shadow = $('infoBoxShadow'); + if (box) { - box.innerHTML=transport.responseText; - if (shadow) { - shadow.style.display = "block"; - } else { - box.style.display = "block"; + if (!getInitParam("infobox_disable_overlay")) { + Element.show("dialog_overlay"); } + + box.innerHTML=transport.responseText; + Element.show("infoBoxShadow"); + //Effect.SlideDown("infoBoxShadow", {duration : 1.0}); + + } /* FIXME this needs to be moved out somewhere */ diff --git a/images/shadow_dark.png b/images/shadow_dark.png index 3a26b2a5c..a300e9492 100644 Binary files a/images/shadow_dark.png and b/images/shadow_dark.png differ diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php index 2ba0740c4..b173e64f6 100644 --- a/modules/popup-dialog.php +++ b/modules/popup-dialog.php @@ -149,7 +149,7 @@ $active_feed_id = sprintf("%d", $params[0]); $is_cat = $params[1] == "true"; - print "