Ver Fonte

[진료관리] 갱신 버튼 온/오프시 클래스 수정.

sjpark há 4 anos atrás
pai
commit
de5a55f9a6
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      src/main/webapp/WEB-INF/jsp/clinic/state.jsp

+ 2 - 2
src/main/webapp/WEB-INF/jsp/clinic/state.jsp

@@ -407,7 +407,7 @@ $(document).ready(function() {
     if(thisID == 'playButton'){
       if (activeReloadTimer()) {	
         $(this).attr('id','pauseButton');
-        $(this).find('i').removeClass('fa-play').addClass('fa-pause');
+        $(this).find('i').removeClass('fa-sync-alt').addClass('fa-pause');
         $('#reloadIntervalSelect').prop('disabled',true);
         $('#viewEntry').prop('disabled',true);
 
@@ -417,7 +417,7 @@ $(document).ready(function() {
     else if(thisID == 'pauseButton'){
       deactiveReloadTimer();
       $(this).attr('id','playButton');
-      $(this).find('i').removeClass('fa-pause').addClass('fa-play');
+      $(this).find('i').removeClass('fa-pause').addClass('fa-sync-alt');
       $('#reloadIntervalSelect').prop('disabled',false);
       $('#viewEntry').prop('disabled',false);