2008-11-24 00:27:45 +00:00
|
|
|
/**
|
2008-12-15 02:45:50 +00:00
|
|
|
* Ajaxify user login form
|
2008-11-24 00:27:45 +00:00
|
|
|
*/
|
2008-12-15 02:45:50 +00:00
|
|
|
function ajaxify_login_form(event) {
|
|
|
|
|
event.preventDefault();
|
2008-12-01 01:55:50 +00:00
|
|
|
$("#gLoginForm").ajaxForm({
|
2008-12-15 02:45:50 +00:00
|
|
|
target: "#gDialog",
|
2008-11-15 06:23:09 +00:00
|
|
|
success: function(responseText, statusText) {
|
|
|
|
|
if (!responseText) {
|
2008-11-13 04:56:12 +00:00
|
|
|
window.location.reload();
|
2008-11-15 06:23:09 +00:00
|
|
|
} else {
|
2008-12-15 02:45:50 +00:00
|
|
|
ajaxify_login_form(event);
|
2008-11-12 21:42:40 +00:00
|
|
|
}
|
2008-11-25 03:24:31 +00:00
|
|
|
}
|
2008-11-12 21:42:40 +00:00
|
|
|
});
|
2008-12-15 02:45:50 +00:00
|
|
|
return false;
|
2008-11-13 05:17:58 +00:00
|
|
|
}
|
2008-12-15 02:45:50 +00:00
|
|
|
|
|
|
|
|
$("document").ready(function() {
|
|
|
|
|
$.listen("submit", "#gLoginForm", function(event) {
|
|
|
|
|
ajaxify_login_form(event);
|
|
|
|
|
});
|
|
|
|
|
});
|