summaryrefslogtreecommitdiff
path: root/themes/default/js/user.js
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/js/user.js')
-rw-r--r--themes/default/js/user.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/themes/default/js/user.js b/themes/default/js/user.js
deleted file mode 100644
index 8ee543bf..00000000
--- a/themes/default/js/user.js
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * @todo preventDefault() not working in IE 6 and 7
- * @todo Close link should be reusable
- */
-
-$("document").ready(function() {
- $("#gLoginLink").click(function(event){
- event.preventDefault();
- var url = $("#gLoginLink a").attr("href");
- $.get(url, function(data) {
- $('#gLoginLink').hide();
- $("#gLoginMenu").append('<li><a href="#">X</a></li>');
- $("#gLoginMenu li:last").addClass("gClose").show();
- $("#gLoginMenu .gClose a").click(function(){
- $("#gLoginForm").remove();
- $("#gLoginMenu .gClose").remove();
- $("#gLoginLink").show();
- $("input#gUsername").val("");
- $("input#gPassword").val("");
- });
- $("#gLoginFormContainer").html(data).hide().fadeIn();
- ajaxify_login_form();
- });
- });
-});
-
-function ajaxify_login_form() {
- $("form#gLoginForm").ajaxForm({
- target: "#gLoginFormContainer",
- success: function(responseText, statusText) {
- if (!responseText) {
- window.location.reload();
- } else {
- ajaxify_login_form();
- }
- }
- });
-}