* Switched the wholist updater to Prototype's AJAX updater, instead of
[citadel.git] / webcit / static / wclib.js
index 52b6a65bcff4ccde398773e59bb81ad7c48c18d7..c6ac5180d47a0a1bf6cf27b05756fc70bdcbc48a 100644 (file)
@@ -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', {} );