Unverified Commit debd6550 authored by planetmutlu-planeta's avatar planetmutlu-planeta Committed by GitHub

Fixed date field just allows to pick date <= 2015

parent 113e0d85
......@@ -455,7 +455,14 @@
processLeafletWidget($el, name);
return true;
case 'x-editable':
$el.editable({params: overrideXeditableParams});
$el.editable({
params: overrideXeditableParams,
combodate: {
// prevent minutes from showing in 5 minute increments
minuteStep: 1,
maxYear: 2030,
}
});
return true;
case 'x-editable-combodate':
$el.editable({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment