We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ecedf1 commit e3286d5Copy full SHA for e3286d5
1 file changed
static/assets/scripts/home.js
@@ -916,7 +916,7 @@ try {
916
// Progress bar (initially empty)
917
const progressBar = document.createElement('div');
918
progressBar.style.cssText = `
919
- width: 1%;
+ width: 0%;
920
height: 100%;
921
background-color: #29abe0;
922
border-radius: 8px;
@@ -1248,7 +1248,7 @@ try {
1248
// Show some initial progress in the bar (optional, you can remove this or customize)
1249
setTimeout(() => {
1250
// You could replace this with actual progress data if you have it
1251
- progressBar.style.width = '0%';
+ progressBar.style.width = '1%';
1252
}, 500);
1253
1254
// Return an object with methods to control the modal
0 commit comments