From 86db73b5d1b1e62af4006309333fcd9608462140 Mon Sep 17 00:00:00 2001 From: Moonchild Date: Mon, 16 May 2022 20:08:29 +0000 Subject: Issue #1813 - Enable date and time picker by default. Resolves #1813 --- modules/libpref/init/all.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 26df1c6ae5..e5c2787f33 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -1157,15 +1157,15 @@ pref("dom.forms.number", true); // platforms which don't have a color picker implemented yet. pref("dom.forms.color", true); -// Support for input type=date and type=time. By default, disabled. -pref("dom.forms.datetime", false); +// Support for input type=date and type=time. +pref("dom.forms.datetime", true); -// Support for input type=month, type=week and type=datetime-local. By default, -// disabled. -pref("dom.forms.datetime.others", false); +// Enable time picker UI. +pref("dom.forms.datetime.timepicker", true); -// Enable time picker UI. By default, disabled. -pref("dom.forms.datetime.timepicker", false); +// Support for input type=month, type=week and type=datetime-local. +// TODO: implement/fix these. +pref("dom.forms.datetime.others", false); // Support for new @autocomplete values pref("dom.forms.autocomplete.experimental", false); -- cgit v1.2.3