fix up bug where sucess used instead of success, also if we delete/restore/move a file from inside the viewer, then adjust the files* divs, and go out of the viewer (back/up) and show updated files div

This commit is contained in:
2025-10-27 22:06:54 +11:00
parent bb43cc5623
commit d247ecec54
4 changed files with 19 additions and 16 deletions

View File

@@ -201,7 +201,7 @@ function DelDBox(del_or_undel)
else
{
which="restore"
col="sucess"
col="success"
}
document.ents_to_del=[]
@@ -905,6 +905,9 @@ function handleCheckAmendmentJobStatus(data)
handleTransformImageJobCompleted(data.job, data.entry)
else if ( data.job.name == 'delete_files' || data.job.name == 'restore_files' || data.job.name == 'move_files' )
handleMoveOrDeleteOrRestoreFileJobCompleted(data.job)
// if we are viewing this file, then just go up / back,b/c this file is "gone" from this view
if( document.viewing )
goOutOfViewer()
}
else { setTimeout( function() { checkForAmendmentJobToComplete(data.job.id) }, 1000 ); }
}