[Time Conductor] Add JSDoc for params

This commit is contained in:
Victor Woeltjen
2015-10-30 14:08:11 -07:00
parent b12bb55495
commit 796d6b800a
3 changed files with 16 additions and 0 deletions

View File

@ -40,6 +40,11 @@ define(
* {@see FormatService}
* @constructor
* @memberof platform/commonUI/general
* @param $scope the Angular scope for this controller
* @param {FormatService} formatService the service to user to format
* domain values
* @param {string} defaultFormat the format to request when no
* format has been otherwise specified
*/
function DateTimeFieldController($scope, formatService, defaultFormat) {
var formatter = formatService.getFormat(defaultFormat);