summaryrefslogtreecommitdiffstats
path: root/public/javascripts/application.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/javascripts/application.js')
-rw-r--r--public/javascripts/application.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/public/javascripts/application.js b/public/javascripts/application.js
index 0ba6142..9f2a5cd 100644
--- a/public/javascripts/application.js
+++ b/public/javascripts/application.js
@@ -1006,6 +1006,7 @@ Gitorious.CommentForm = function(path){
commentContainer.find("#comment_body").focus();
var zeForm = commentContainer.find("form");
zeForm.submit(function(){
+ zeForm.find(".progress").show("fast");
jQuery.ajax({
"url": $(this).attr("action"),
"data": $(this).serialize(),
@@ -1016,6 +1017,7 @@ Gitorious.CommentForm = function(path){
},
"error": function(xhr, statusText, errorThrown) {
var errorDisplay = $(zeForm).find(".error");
+ zeForm.find(".progress").hide("fast");
errorDisplay.text("Please make sure your comment is valid");
errorDisplay.show("fast");
}