GUAC-810: Reorganize client view to support text input. Handle text input choice in menu.

This commit is contained in:
Michael Jumper
2014-12-20 16:07:57 -08:00
parent 50d5a79031
commit a89101acaf
5 changed files with 117 additions and 137 deletions

View File

@@ -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');
});