Procházet zdrojové kódy

busy icon color

master
Pascal Gloor před 5 roky
rodič
revize
cc177cbb39
2 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. 1
    1
      www/index.html
  2. 3
    1
      www/js/autodoc.js

+ 1
- 1
www/index.html Zobrazit soubor

@@ -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 Zobrazit soubor

@@ -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);
}


Načítá se…
Zrušit
Uložit