소스 검색

Fix “Submitting” state of Close issue input

If .btn-default isn’t removed, .btn-default and .btn-warning styles
conflict
Andrew Patton 10 년 전
부모
커밋
cd369b667f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      public/js/app.js

+ 1 - 1
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...");