Well, replace the code:
succ: function(){ var sd = new Date(this.getFullYear(),this.getMonth(),this.getDate()+1, 1); sd.setHours(this.getHours(),this.getMinutes(),this.getSeconds(),this.getMilliseconds()); return sd; },
and now everything is ok.
thanks.
More information about formatting options
Excellent..
Well, replace the code:
succ: function(){
var sd = new Date(this.getFullYear(),this.getMonth(),this.getDate()+1, 1);
sd.setHours(this.getHours(),this.getMinutes(),this.getSeconds(),this.getMilliseconds());
return sd;
},
and now everything is ok.
thanks.