diff options
author | Andrew Patton <andrew@acusti.ca> | 2014-07-25 17:49:51 -0400 |
---|---|---|
committer | Andrew Patton <andrew@acusti.ca> | 2014-07-25 17:49:51 -0400 |
commit | cd369b667fe65b71c13affe5697157cd09f05bcc (patch) | |
tree | f1ebab85d60b74ba6645859088905686864cfeb4 /public/js | |
parent | ef430ae7ab96312b5a3b5191ae999384350cb1be (diff) | |
download | gitea-cd369b667fe65b71c13affe5697157cd09f05bcc.tar.gz gitea-cd369b667fe65b71c13affe5697157cd09f05bcc.zip |
Fix “Submitting” state of Close issue input
If .btn-default isn’t removed, .btn-default and .btn-warning styles
conflict
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/app.js b/public/js/app.js index 034d7e8d06..9a5efaf41c 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -643,7 +643,7 @@ function initIssue() { var $button = $(this); - $button.removeClass("btn-success"); + $button.removeClass("btn-success btn-default"); $button.addClass("btn-warning"); $button.text("Submiting..."); |