mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 05:31:22 +00:00
Fix jsdoc comments.
This commit is contained in:
@@ -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 || {};
|
||||||
|
@@ -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});
|
||||||
};
|
};
|
||||||
|
@@ -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 || {};
|
||||||
|
@@ -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.
|
||||||
|
@@ -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 || {};
|
||||||
|
@@ -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 || {};
|
||||||
|
@@ -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 || {};
|
||||||
|
Reference in New Issue
Block a user