Fix jsdoc, add missing documentation.

This commit is contained in:
Michael Jumper
2012-08-11 12:52:30 -07:00
parent d5e1b88cdc
commit 21fb1e92bb
6 changed files with 202 additions and 48 deletions

View File

@@ -35,7 +35,10 @@
*
* ***** END LICENSE BLOCK ***** */
// Guacamole namespace
/**
* Namespace for all Guacamole JavaScript objects.
* @namespace
*/
var Guacamole = Guacamole || {};
/**
@@ -103,6 +106,7 @@ Guacamole.Mouse = function(element) {
/**
* Counter of mouse events to ignore. This decremented by mousemove, and
* while non-zero, mouse events will have no effect.
* @private
*/
var ignore_mouse = 0;