GUAC-807 Got mouse emulation modes working.

This commit is contained in:
James Muehlner
2014-11-11 22:06:53 -08:00
parent 28398b5577
commit 598e64b757
4 changed files with 90 additions and 91 deletions

View File

@@ -68,6 +68,15 @@ angular.module('client').factory('clientProperties', [function clientProperties(
* @type Boolean
*/
this.keyboardEnabled = true;
/**
* Whether translation of touch to mouse events should emulate an
* absolute pointer device, or a relative pointer device.
*
* @type Boolean
*/
this.emulateAbsoluteMouse = true;
};
}]);