Skip to content

Commit

Permalink
Merge pull request #155 from CDLUC3/regenlink
Browse files Browse the repository at this point in the history
Regenlink
  • Loading branch information
terrywbrady authored Jan 24, 2024
2 parents fc0cf2e + d24c053 commit 50810cd
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()
},
60 * 60 * 1000
);
return;
}

Expand Down

0 comments on commit 50810cd

Please sign in to comment.