Skip to content

Commit

Permalink
Merge pull request #2310 from owncloud/bugfix/download-spinner-on-ie11
Browse files Browse the repository at this point in the history
Remove file from progress after download on IE11
  • Loading branch information
DeepDiver1975 authored Oct 22, 2019
2 parents 9ba3a88 + dfeddcf commit 5a348cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/phoenix.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export default {
anchor.click()
document.body.removeChild(anchor)
window.URL.revokeObjectURL(objectUrl)
this.removeActionFromProgress(file)

// TODO: Bring back when progress bar for download is figured out
// Items with small size can be fetched too fast for progress listener
Expand All @@ -74,6 +73,8 @@ export default {
// progress: 100
// })
}

this.removeActionFromProgress(file)
}
})

Expand Down

0 comments on commit 5a348cb

Please sign in to comment.