Skip to content

Commit

Permalink
refresh download link
Browse files Browse the repository at this point in the history
  • Loading branch information
terrywbrady committed Jan 23, 2024
1 parent fc0cf2e commit 7ce1829
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/assets/javascripts/presign_progress.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ var AssemblyProgress = function(assembler, pDialogs) {

// If the percent is already at 100%, no action is needed
if (val >= 100) {
//if the user takes no action for an hour, refresh the presigned url
setTimeout(
function(){
self.setProgressVal(90);
self.progress()
},
60000
);
return;
}

Expand Down

0 comments on commit 7ce1829

Please sign in to comment.