X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fstatic%2Fwclib.js;h=c6ac5180d47a0a1bf6cf27b05756fc70bdcbc48a;hb=15f40ad964c35ddb0bd680317a15652b130c2c46;hp=52b6a65bcff4ccde398773e59bb81ad7c48c18d7;hpb=e1a2c366821e4f34bd3d84c1b9842300f4240f40;p=citadel.git diff --git a/webcit/static/wclib.js b/webcit/static/wclib.js index 52b6a65bc..c6ac5180d 100644 --- a/webcit/static/wclib.js +++ b/webcit/static/wclib.js @@ -29,7 +29,7 @@ function hide_page_popup() { document.poppedLayer.style.visibility = "hidden"; } -function hide_imsg_popup_old() { +function hide_imsg_popup() { if (browserType == "gecko" ) document.poppedLayer = eval('document.getElementById(\'important_message\')'); else if (browserType == "ie") @@ -40,12 +40,6 @@ function hide_imsg_popup_old() { document.poppedLayer.style.visibility = "hidden"; } -function hide_imsg_popup() { - // new Effect.FadeTo('important_message', 0.0, 1000, 20, {complete:function() { hide_imsg_popup_old(); }} ); - hide_imsg_popup_old(); // Do it the old way for now, to avoid library conflicts -} - - // This function activates the ajax-powered recipient autocompleters on the message entry screen. function activate_entmsg_autocompleters() { new Ajax.Autocompleter('cc_id', 'cc_name_choices', '/cc_autocomplete', {} );