From 0cfcb62195d1b69bbebf9ec842d7665c94f051d1 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 11 Aug 2015 13:39:12 -0700 Subject: [PATCH] GUAC-1213: Correct comment regarding time formatting. --- .../src/main/webapp/app/form/directives/guacLenientTime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/webapp/app/form/directives/guacLenientTime.js b/guacamole/src/main/webapp/app/form/directives/guacLenientTime.js index 98ecd590a..03957b567 100644 --- a/guacamole/src/main/webapp/app/form/directives/guacLenientTime.js +++ b/guacamole/src/main/webapp/app/form/directives/guacLenientTime.js @@ -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) { return modelValue ? $filter('date')(modelValue, 'HH:mm:ss', 'UTC') : ''; }];