gitflow-hotfix-stash: pushsubscription_onerror

This commit is contained in:
ostertun
2020-11-19 13:20:29 +01:00
parent da553a8f8d
commit 13f496f0a6
4 changed files with 56 additions and 21 deletions

View File

@@ -13,6 +13,7 @@ var showConsoleButtonTimeout = setTimeout(function(){
$('#button-show-console').show();
}, 10000);
var showLoader = function() {
log('[tpl] showLoader called, loaderCount:', loaderCount);
if (loaderCount < 1) {
$('#preloader').removeClass('preloader-hide');
loaderCount = 0;
@@ -24,6 +25,7 @@ var showLoader = function() {
loaderCount ++;
}
var hideLoader = function() {
log('[tpl] hideLoader called, loaderCount:', loaderCount);
loaderCount --;
if (loaderCount < 1) {
$('#preloader').addClass('preloader-hide');