GUAC-1213: Add time zone field type.

This commit is contained in:
Michael Jumper
2015-08-09 22:14:19 -07:00
parent cbb5db9e57
commit 65cdb5daef
7 changed files with 798 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
<div class="time-zone-field">
<!-- Available time zone regions -->
<select class="time-zone-region"
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-model="model"
ng-options="name for (name, value) in timeZones[region] | orderBy: name"></select>
</div>