Development
This commit is contained in:
parent
ddee2c2389
commit
b7c9bccd43
1 changed files with 6 additions and 1 deletions
|
|
@ -2686,7 +2686,12 @@ function startApplyPoller(uuid, bar, mine) {
|
||||||
el.textContent = 'Fix is being applied now...';
|
el.textContent = 'Fix is being applied now...';
|
||||||
},
|
},
|
||||||
onComplete: function() {
|
onComplete: function() {
|
||||||
if (bar) bar.classList.remove('info-bar-running');
|
if (bar) {
|
||||||
|
bar.classList.remove('info-bar-running');
|
||||||
|
bar.style.animation = 'none';
|
||||||
|
bar.offsetHeight;
|
||||||
|
bar.style.animation = '';
|
||||||
|
}
|
||||||
el.textContent = 'Fix has been applied.';
|
el.textContent = 'Fix has been applied.';
|
||||||
setTimeout(function() { window.location.reload(); }, 2500);
|
setTimeout(function() { window.location.reload(); }, 2500);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue