mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-10 16:25:01 -04:00
Turn input tabs into progress bars
This commit is contained in:
parent
9d60ef5f72
commit
713f10e63a
2 changed files with 7 additions and 1 deletions
|
@ -413,7 +413,7 @@ class TabWaiter {
|
|||
if (tabItem === null) return;
|
||||
|
||||
const percentComplete = (progress / total) * 100;
|
||||
if (percentComplete === 100 || progress === false) {
|
||||
if (percentComplete >= 100 || progress === false) {
|
||||
tabItem.style.background = "";
|
||||
} else {
|
||||
tabItem.style.background = `linear-gradient(to right, var(--title-background-colour) ${percentComplete}%, var(--primary-background-colour) ${percentComplete}%)`;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue