Hi, Current date editor always sets hours and minutes to 00:00 , this is a bit confusing since in some cases changes the day date itself. To fix this a little improvement to getValue method :
/**
* @return {Date} Selected date
*/
getValue: function() {
var year = this.$year.val(),
month = this.$month.val(),
date = this.$date.val();
if (!year || !month || !date) return null;
current = new Date()
return new Date(Date.UTC(year, month, date, current.getHours(), current.getMinutes()));
},
Hi, Current date editor always sets hours and minutes to 00:00 , this is a bit confusing since in some cases changes the day date itself. To fix this a little improvement to getValue method :
Ta