]> code.citadel.org Git - citadel.git/blobdiff - webcit/static/wclib.js
Began implementing GetLoggedInFirst(destination_url) path
[citadel.git] / webcit / static / wclib.js
index 597fdd1bd0e33d80f54bb7e6c5e8fc4f85dffb19..889b068e70f11b1b96ebec0c632263bc52096771 100644 (file)
@@ -870,7 +870,30 @@ function ConfirmLogoff() {
                 {
                         method: 'get',
                        onSuccess: function(cl_success) {
-                               toggleModal();
+                               toggleModal(1);
+                       }
+                }
+        );
+}
+
+
+/*
+ * Wrapper script to require logging in before completing an action
+ */
+function GetLoggedInFirst(destination_url) {
+
+       /* If logged in already, go directly to the destination. */
+       /* FIXME implement this */
+
+       /* If not logged in, go modal and ask the user to log in first. */
+       p = 'do_template?template=get_logged_in?destination_url=' + destination_url;
+       new Ajax.Updater(
+               'md-content',
+               p,
+                {
+                        method: 'get',
+                       onSuccess: function(cl_success) {
+                               toggleModal(1);
                        }
                 }
         );