Fix jsdoc comments.

This commit is contained in:
Michael Jumper
2013-09-02 17:41:25 -07:00
parent 9bf27bfb69
commit 4a0003b53d
7 changed files with 10 additions and 1 deletions

View File

@@ -222,10 +222,12 @@ Guacamole.Blob = function(mimetype, name) {
var blobs = [];
/** @ignore */
this.append = function(data) {
blobs.push(new Blob([data], {"type": mimetype}));
};
/** @ignore */
this.getBlob = function() {
return new Blob(blobs, {"type": mimetype});
};