Nudge disabled and greyed out while ajaxForm process
darcs-hash:20081208055812-eefa4-719bb1b630a7d0764b286d67488313627b5180c8.gz
This commit is contained in:
parent
71c8d90378
commit
665a3325b3
|
@ -87,7 +87,13 @@ $(document).ready(function(){
|
|||
$("form.disfavor").each(addAjaxHidden);
|
||||
|
||||
$("#nudge").ajaxForm ({ dataType: 'xml',
|
||||
success: function(xml) { $("#nudge").replaceWith(document._importNode($("#nudge_response", xml).get(0),true)); }
|
||||
beforeSubmit: function(xml) { $("form#nudge input[type=submit]").attr("disabled", "disabled");
|
||||
$("form#nudge input[type=submit]").addClass("disabled");
|
||||
},
|
||||
success: function(xml) { $("#nudge").replaceWith(document._importNode($("#nudge_response", xml).get(0),true));
|
||||
$("#nudge input[type=submit]").removeAttr("disabled");
|
||||
$("#nudge input[type=submit]").removeClass("disabled");
|
||||
}
|
||||
});
|
||||
$("#nudge").each(addAjaxHidden);
|
||||
$("#nudge .submit").bind('click', function(e) { $(this).addClass("processing"); });
|
||||
|
|
|
@ -245,6 +245,11 @@ background-color:transparent;
|
|||
line-height:18px;
|
||||
font-size:14px;
|
||||
}
|
||||
#wrap #profile_nudge input.disabled {
|
||||
color:#999;
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
|
||||
#wrap form input.disabled,
|
||||
#wrap form input.disabled:hover {
|
||||
|
|
Loading…
Reference in New Issue
Block a user