GUAC-1213: Correct comment regarding time formatting.

This commit is contained in:
Michael Jumper
2015-08-11 13:39:12 -07:00
parent 79f672bfa9
commit 0cfcb62195

View File

@@ -91,7 +91,7 @@ angular.module('form').directive('guacLenientTime', ['$injector',
}]; }];
// Format time strings as "yyyy-MM-dd" // Format time strings as "HH:mm:ss"
ngModel.$formatters = [function format(modelValue) { ngModel.$formatters = [function format(modelValue) {
return modelValue ? $filter('date')(modelValue, 'HH:mm:ss', 'UTC') : ''; return modelValue ? $filter('date')(modelValue, 'HH:mm:ss', 'UTC') : '';
}]; }];