Skip to content
Snippets Groups Projects

Resolve "Selecting date in substitutions list yields NaN and 404"

2 files
+ 2
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -10,10 +10,7 @@ function loadNew() {
}
function onDateChanged() {
var str = $("#date").val();
var split = str.split(".");
activeDate = new Date(split[2], split[1] - 1, split[0]);
updateDatepicker();
activeDate = M.Datepicker.getInstance($("#date")).date;
loadNew();
}
Loading