summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-05-16 20:08:29 +0000
committerMoonchild <moonchild@palemoon.org>2022-05-16 20:08:29 +0000
commit86db73b5d1b1e62af4006309333fcd9608462140 (patch)
tree3fdd7846c6d27a134104356147e7b45fec219a02
parentbdfd859beb7ceeef335054f65e5b499c6610d985 (diff)
downloaduxp-86db73b5d1b1e62af4006309333fcd9608462140.tar.gz
Issue #1813 - Enable date and time picker by default.
Resolves #1813
-rw-r--r--modules/libpref/init/all.js14
1 files 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);