Migrate to cleaner InputStream and OutputStream with Reader wrappers.

This commit is contained in:
Michael Jumper
2014-02-28 15:25:01 -08:00
parent beb9e5c684
commit 71ae352208
7 changed files with 399 additions and 383 deletions

View File

@@ -815,9 +815,7 @@ GuacUI.Client.attach = function(guac) {
}
guac.onfile = function(mimetype, filename) {
var stream = new Guacamole.BlobInputStream(mimetype);
guac.onfile = function(stream, mimetype, filename) {
var download = new GuacUI.Download(filename);
download.updateProgress(getSizeString(0));
@@ -845,8 +843,6 @@ GuacUI.Client.attach = function(guac) {
GuacUI.Client.notification_area.removeChild(download.getElement());
};
return stream;
};
/*