GUAC-1084: Clarify comment describing committedTunnel.

This commit is contained in:
Michael Jumper
2015-07-07 21:21:18 -07:00
parent f3573f0a59
commit 9d0703125a

View File

@@ -843,10 +843,13 @@ Guacamole.ChainedTunnel = function(tunnel_chain) {
var tunnels = []; var tunnels = [];
/** /**
* Stores a single committed tunnel once committed * The tunnel committed via commit_tunnel(), if any, or null if no tunnel
* has yet been committed.
*
* @private * @private
* @type Guacamole.Tunnel
*/ */
var committedTunnel; var committedTunnel = null;
// Load all tunnels into array // Load all tunnels into array
for (var i=0; i<arguments.length; i++) for (var i=0; i<arguments.length; i++)