mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 00:53:21 +00:00 
			
		
		
		
	GUACAMOLE-231: Merge client handling for mouse instruction
This commit is contained in:
		| @@ -1037,6 +1037,17 @@ Guacamole.Client = function(tunnel) { | ||||
|  | ||||
|         }, | ||||
|  | ||||
|         "mouse" : function handleMouse(parameters) { | ||||
|  | ||||
|             var x = parseInt(parameters[0]); | ||||
|             var y = parseInt(parameters[1]); | ||||
|  | ||||
|             // Display and move software cursor to received coordinates | ||||
|             display.showCursor(true); | ||||
|             display.moveCursor(x, y); | ||||
|  | ||||
|         }, | ||||
|  | ||||
|         "move": function(parameters) { | ||||
|              | ||||
|             var layer_index = parseInt(parameters[0]); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user