mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
Merge pull request #31 from glyptodon/multiline-param
GUAC-966: Restore support for MULTILINE parameter type.
This commit is contained in:
@@ -26,5 +26,6 @@
|
|||||||
<input ng-show="parameter.type === 'USERNAME'" type="text" ng-model="typedValue"/>
|
<input ng-show="parameter.type === 'USERNAME'" type="text" ng-model="typedValue"/>
|
||||||
<input ng-show="parameter.type === 'PASSWORD'" type="password" ng-model="typedValue"/>
|
<input ng-show="parameter.type === 'PASSWORD'" type="password" ng-model="typedValue"/>
|
||||||
<input ng-show="parameter.type === 'BOOLEAN'" type="checkbox" ng-model="typedValue"/>
|
<input ng-show="parameter.type === 'BOOLEAN'" type="checkbox" ng-model="typedValue"/>
|
||||||
|
<textarea ng-show="parameter.type === 'MULTILINE'" ng-model="typedValue"></textarea>
|
||||||
<select ng-show="parameter.type === 'ENUM'" ng-model="typedValue" ng-options="option.value as getProtocolParameterOption(protocol.name, parameter.name, option.value) | translate for option in parameter.options | orderBy: value"></select>
|
<select ng-show="parameter.type === 'ENUM'" ng-model="typedValue" ng-options="option.value as getProtocolParameterOption(protocol.name, parameter.name, option.value) | translate for option in parameter.options | orderBy: value"></select>
|
||||||
</span>
|
</span>
|
Reference in New Issue
Block a user