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

@@ -119,6 +119,18 @@ angular.module('form').provider('formService', function formServiceProvider() {
*/
'MULTILINE' : {
templateUrl : 'app/form/templates/textAreaField.html'
},
/**
* Field type which allows selection of time zones.
*
* @see {@link Field.Type.TIMEZONE}
* @type FieldType
*/
'TIMEZONE' : {
module : 'form',
controller : 'timeZoneFieldController',
templateUrl : 'app/form/templates/timeZoneField.html'
}
};