angular js-Eingang Datum auf firefox

Habe ich diese Eingänge und das Modell:

<input name="date" type="date" ng-model="model.date" />
<input name="time" type="time" ng-model="model.time" />

model{
    date: "yyyy-mm-dd",
    time: "hh24:mi"
}

Muss ich das Datum und die Uhrzeit als string und das format ist ok für das, was ich zu tun habe. Das problem ist das input date und input time nur richtig funktioniert mit Chrome. Wenn ich mit Firefox diese Eingänge werden zwei einfache input text.
Was kann ich tun?

Schreibe einen Kommentar