necouchman commented on code in PR #668:
URL: https://github.com/apache/guacamole-client/pull/668#discussion_r1062073599
##########
guacamole-common-js/src/main/webapp/modules/Client.js:
##########
@@ -1824,3 +1844,31 @@ Guacamole.Client.DefaultTransferFunction = {
}
};
+
+/**
+ * A list of possible messages that can be sent by the server and displayed to
+ * the client.
+ *
+ * @type {!Object.<string, number>}
+ */
+Guacamole.Client.Message = {
+
+ /**
+ * A client message that indicates that a user has joined an existing
+ * connection. This message expects a single additional argument - the
+ * name of the user who has joined the connection.
+ *
+ * @type {!number}
+ */
+ "JOINED": 0x0001,
+
+ /**
+ * A client message that indicates that a user has left an existing
+ * connection. This message expects a single additional argument - the
+ * name of the user who has left the connection.
+ *
+ * @type {!number}
+ */
+ "LEFT": 0x0002
Review Comment:
Fixed via rebase.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]