GUACAMOLE-44: Replace use of ManagedFileDownload with calls to the tunnel REST service.

This commit is contained in:
Michael Jumper
2016-04-06 22:37:15 -07:00
parent 0ef7b90619
commit 4059054d31
5 changed files with 8 additions and 178 deletions

View File

@@ -83,11 +83,6 @@ angular.module('client').directive('guacFileTransferManager', [function guacFile
return isInProgress(upload.transferState);
});
// Remove completed downloads
$scope.client.downloads = $scope.client.downloads.filter(function isDownloadInProgress(download) {
return isInProgress(download.transferState);
});
};
}]