From d4ebed120d1e4009ae4815962f5bb36822acd756 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Tue, 13 Aug 2019 18:06:10 +0200 Subject: [PATCH] refactor(datepicker): removed comment --- frontend/src/utils/form/datepicker.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/frontend/src/utils/form/datepicker.js b/frontend/src/utils/form/datepicker.js index 477a83b39..5c13b63a4 100644 --- a/frontend/src/utils/form/datepicker.js +++ b/frontend/src/utils/form/datepicker.js @@ -4,12 +4,6 @@ import { Utility } from '../../core/utility'; const FORM_DATE_FORMAT = 'yyyy-mm-dd"T"HH:MM:ss'; -/* TODO: -- DONE define a map of form id to instance lists -- DONE define a function that formats all dates of a form with a specified id -- WIP call this function where formdata appears in mass-input.js, async-form.js and async-table.js -*/ - const DATEPICKER_UTIL_SELECTOR = 'input[type="date"], input[type="time"], input[type="datetime-local"]'; const DATEPICKER_INITIALIZED_CLASS = 'datepicker--initialized';