fix w masowej aktualizacji dirmware
This commit is contained in:
parent
fdb1e7b161
commit
f572b0808c
@ -176,6 +176,13 @@
|
|||||||
// Obsługa przycisku restartu w prompt
|
// Obsługa przycisku restartu w prompt
|
||||||
document.getElementById('mass-firmware-reboot-btn').addEventListener('click', function() {
|
document.getElementById('mass-firmware-reboot-btn').addEventListener('click', function() {
|
||||||
promptDiv.style.display = 'none';
|
promptDiv.style.display = 'none';
|
||||||
|
|
||||||
|
// Wysyłamy reboot dla każdego wybranego urządzenia
|
||||||
|
selectedDevices.forEach(function(id) {
|
||||||
|
fetch("{{ url_for('restart_device', device_id=0) }}".replace("0", id), { method: 'POST' })
|
||||||
|
.catch(function(error){ console.error('Błąd wysyłania reboot dla urządzenia ' + id, error); });
|
||||||
|
});
|
||||||
|
|
||||||
// Pokaż overlay z paskiem postępu dla reboot (2 minuty)
|
// Pokaż overlay z paskiem postępu dla reboot (2 minuty)
|
||||||
var overlay = document.getElementById('mass-firmware-update-overlay');
|
var overlay = document.getElementById('mass-firmware-update-overlay');
|
||||||
overlay.style.display = 'block';
|
overlay.style.display = 'block';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user