소스 검색

busy icon color

master
Pascal Gloor 5 년 전
부모
커밋
cc177cbb39
2개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    1
      www/index.html
  2. 3
    1
      www/js/autodoc.js

+ 1
- 1
www/index.html 파일 보기

@@ -58,7 +58,7 @@
<button type="button" class="autodoc_ajax_off btn btn-secondary disabled">
<i class="fas fa-signal"></i>
</button>
<button type="button" class="autodoc_ajax_on d-none btn btn-primary disabled">
<button type="button" class="autodoc_ajax_on d-none btn btn-warning disabled">
<i class="fas fa-sync fa-spin"></i>
</button>
</div>

+ 3
- 1
www/js/autodoc.js 파일 보기

@@ -734,11 +734,13 @@ function document_update_name(docid, name) {
});
}


// handle ajax busy icon
function loader_icon_on() {
conf.busy++;
}

function load_icon_off() {
function loader_icon_off() {
setTimeout(function() { conf.busy--; }, 1000);
}


Loading…
취소
저장