trac831 disables status_form input submit onsubmit

darcs-hash:20081201175028-eefa4-f67a2bd15bf052d62c36b1ff666f37ca98983f31.gz
This commit is contained in:
csarven 2008-12-01 12:50:28 -05:00
parent 412e3e27f2
commit d55318eaed
2 changed files with 10 additions and 0 deletions

View File

@ -126,6 +126,8 @@ $(document).ready(function(){
$("#status_form").addClass("response_error"); $("#status_form").addClass("response_error");
return false; return false;
} }
$("#status_form input[type=submit]").attr("disabled", "disabled");
$("#status_form input[type=submit]").addClass("disabled");
return true; return true;
}, },
success: function(xml) { if ($(".error", xml).length > 0) { success: function(xml) { if ($(".error", xml).length > 0) {
@ -140,6 +142,8 @@ $(document).ready(function(){
$(".notice_single:first").css({display:"none"}); $(".notice_single:first").css({display:"none"});
$(".notice_single:first").fadeIn(2500); $(".notice_single:first").fadeIn(2500);
} }
$("#status_form input[type=submit]").removeAttr("disabled");
$("#status_form input[type=submit]").removeClass("disabled");
} }
} }
$("#status_form").ajaxForm(PostNotice); $("#status_form").ajaxForm(PostNotice);

View File

@ -252,6 +252,12 @@ font-size:14px;
} }
#wrap form input.disabled,
#wrap form input.disabled:hover {
background-color:#999;
cursor:default;
}
/* ----- Nav Footer ----- */ /* ----- Nav Footer ----- */
#nav_sub { #nav_sub {
clear: both; clear: both;