root 4 년 전
부모
커밋
18546b9965
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      src/blockly/cocoblockly.js

+ 4 - 1
src/blockly/cocoblockly.js

@@ -608,7 +608,10 @@ function progress_text(msg, percent) {
         $('.progress > .determinate').css('transition', "none");
         $('.progress > .determinate').css('width', percent);
     }
-    $('.progress > .determinate').css('transition', "width .3s linear");
+    else {
+        $('.progress > .determinate').css('transition', "width .3s linear");
+        $(".determinate").css("width", percent)
+    }
     msg == CCB.str_group.upload_fail ?
         $(".determinate").css("width", "100%") :
         '';