changed Linework export progress bar interval to 500 ms

This commit is contained in:
Frank Schubert
2022-06-16 14:50:58 +02:00
parent 4b1583297f
commit 24742e4038
2 changed files with 3 additions and 3 deletions

View File

@@ -747,7 +747,7 @@ function validateWorkflowItem(id) {
setTimeout(() => {document.location.href = '<?=self::getUrl("Linework","downloadExport")?>?uid=' + export_uid}, 200);
setTimeout(clearProgressBar, 5000);
} else {
setTimeout(updateExportProgress, 200);
setTimeout(updateExportProgress, 500);
}
}
},

View File

@@ -149,7 +149,7 @@
<ul class="nav nav-tabs ml-1 border-0" role="tablist">
<li class="nav-item">
<a class="nav-link <?=(!$showLonelies) ? "active" : ""?>" href="<?=self::getUrl("Order", "Index", ["filter" => $filter])?>">Bestellungen mit Anschluss<?php if(is_array($lonelyOrders)): ?> <span class="counter"><?=$pagination['maxItems']?></span><?php endif; ?></a>
<a class="nav-link <?=(!$showLonelies && !$showVoice && !$showSpecial) ? "active" : ""?>" href="<?=self::getUrl("Order", "Index", ["filter" => $filter])?>">Bestellungen mit Anschluss<?php if(is_array($lonelyOrders)): ?> <span class="counter"><?=$pagination['maxItems']?></span><?php endif; ?></a>
</li>
<li class="nav-item">
<a class="nav-link <?=($showLonelies) ? "active" : ""?>" href="<?=self::getUrl("Order", "Index", ["noTermProducts" => 1, "filter" => $filter])?>">
@@ -591,7 +591,7 @@
<?php endforeach; ?>
</table>
<?php else: ?>
<i>Keine <strong>anschlusslosen</strong> Bestellungen zu den Suchkriterien gefunden</i>
<i>Keine Bestellungen zu den Suchkriterien gefunden</i>
<?php endif; ?>
</div>
</div>