GUACAMOLE-348: Only remove download iframe if it's still attached to the DOM.

This commit is contained in:
James Muehlner
2018-02-06 20:11:30 -08:00
parent 528977422c
commit 017df40b33

View File

@@ -224,7 +224,9 @@ angular.module('rest').factory('tunnelService', ['$injector',
// ends, in the browser does NOT fire the "load" event for downloads
stream.onend = function downloadComplete() {
$window.setTimeout(function cleanupIframe() {
document.body.removeChild(iframe);
if (iframe.parentElement) {
document.body.removeChild(iframe);
}
}, DOWNLOAD_CLEANUP_WAIT);
};