mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-08 06:01:22 +00:00
GUAC-810: Reorganize client view to support text input. Handle text input choice in menu.
This commit is contained in:
@@ -204,8 +204,9 @@ angular.module('home').controller('clientController', ['$scope', '$routeParams',
|
||||
// Show/hide UI elements depending on input method
|
||||
$scope.$watch('inputMethod', function setInputMethod(inputMethod) {
|
||||
|
||||
// Show on-screen keyboard only if selected
|
||||
$scope.showOSK = (inputMethod === 'osk');
|
||||
// Show input methods only if selected
|
||||
$scope.showOSK = (inputMethod === 'osk');
|
||||
$scope.showTextInput = (inputMethod === 'text');
|
||||
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user