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.
2 parents 0ba2b1e + 7c45e08 commit 4f4053bCopy full SHA for 4f4053b
src/js/brutusin-json-forms.js
@@ -222,6 +222,10 @@ if (typeof brutusin === "undefined") {
222
// #46, problem in IE11. TODO polyfill?
223
input.type = "text";
224
}
225
+ } else if (s.format === "date") {
226
+ input.type = "date";
227
+ } else if (s.format === "time") {
228
+ input.type = "time";
229
} else if (s.format === "email") {
230
input.type = "email";
231
} else if (s.format === "text") {
0 commit comments