mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-10-28 23:53:08 +00:00
GUACAMOLE-742: Provide "disabled" attribute for forms and fields.
This commit is contained in:
@@ -2,12 +2,13 @@
|
||||
|
||||
<!-- Available time zone regions -->
|
||||
<select class="time-zone-region"
|
||||
ng-disabled="disabled"
|
||||
ng-model="region"
|
||||
ng-options="name for name in regions | orderBy: name"></select>
|
||||
|
||||
<!-- Time zones within selected region -->
|
||||
<select class="time-zone"
|
||||
ng-disabled="!region"
|
||||
ng-disabled="disabled || !region"
|
||||
ng-model="model"
|
||||
ng-options="timeZone.value as timeZone.key for timeZone in timeZones[region] | toArray | orderBy: key"></select>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user