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

@@ -37,6 +37,7 @@
/** /**
* Namespace for all Guacamole JavaScript objects. * Namespace for all Guacamole JavaScript objects.
* @ignore
* @namespace * @namespace
*/ */
var Guacamole = Guacamole || {}; var Guacamole = Guacamole || {};

View File

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

View File

@@ -37,6 +37,7 @@
/** /**
* Namespace for all Guacamole JavaScript objects. * Namespace for all Guacamole JavaScript objects.
* @ignore
* @namespace * @namespace
*/ */
var Guacamole = Guacamole || {}; var Guacamole = Guacamole || {};

View File

@@ -37,6 +37,7 @@
/** /**
* Namespace for all Guacamole JavaScript objects. * Namespace for all Guacamole JavaScript objects.
* @ignore
* @namespace * @namespace
*/ */
var Guacamole = Guacamole || {}; var Guacamole = Guacamole || {};
@@ -557,7 +558,8 @@ Guacamole.Layer = function(width, height) {
/** /**
* Run an arbitrary function as soon as currently pending operations * Run an arbitrary function as soon as currently pending operations
* are complete. * are complete.
* *
* @function
* @param {function} handler The function to call once all currently * @param {function} handler The function to call once all currently
* pending operations are complete. * pending operations are complete.
* @param {boolean} blocked Whether the task should start blocked. * @param {boolean} blocked Whether the task should start blocked.

View File

@@ -37,6 +37,7 @@
/** /**
* Namespace for all Guacamole JavaScript objects. * Namespace for all Guacamole JavaScript objects.
* @ignore
* @namespace * @namespace
*/ */
var Guacamole = Guacamole || {}; var Guacamole = Guacamole || {};

View File

@@ -37,6 +37,7 @@
/** /**
* Namespace for all Guacamole JavaScript objects. * Namespace for all Guacamole JavaScript objects.
* @ignore
* @namespace * @namespace
*/ */
var Guacamole = Guacamole || {}; var Guacamole = Guacamole || {};

View File

@@ -37,6 +37,7 @@
/** /**
* Namespace for all Guacamole JavaScript objects. * Namespace for all Guacamole JavaScript objects.
* @ignore
* @namespace * @namespace
*/ */
var Guacamole = Guacamole || {}; var Guacamole = Guacamole || {};