We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3add9bd commit 7c45e08Copy full SHA for 7c45e08
src/js/brutusin-json-forms.js
@@ -223,6 +223,10 @@ if (typeof brutusin === "undefined") {
223
// #46, problem in IE11. TODO polyfill?
224
input.type = "text";
225
}
226
+ } else if (s.format === "date") {
227
+ input.type = "date";
228
+ } else if (s.format === "time") {
229
+ input.type = "time";
230
} else if (s.format === "email") {
231
input.type = "email";
232
} else if (s.format === "text") {
0 commit comments