[Forms] Use MM-DD in date-time control

Use month and day instead of day-of-year in date-time
control, WTD-1272.
This commit is contained in:
Victor Woeltjen
2015-06-15 13:01:43 -07:00
parent 0f30e5e840
commit 05a114cc75
2 changed files with 8 additions and 5 deletions

View File

@ -26,7 +26,7 @@ define(
function () {
"use strict";
var DATE_FORMAT = "YYYY-DDD";
var DATE_FORMAT = "YYYY-MM-DD";
/**
* Controller for the `datetime` form control.
@ -92,6 +92,9 @@ define(
$scope.$watch("datetime.min", update);
$scope.$watch("datetime.sec", update);
// Expose format string for placeholder
$scope.format = DATE_FORMAT;
// Initialize forms values
updateDateTime(
($scope.ngModel && $scope.field) ?
@ -102,4 +105,4 @@ define(
return DateTimeController;
}
);
);