More work on event dates

Transactions
Dan 2017-10-01 16:39:59 -06:00
parent e21942d30a
commit 7687af19de
1 changed files with 1 additions and 0 deletions

View File

@ -149,6 +149,7 @@ function nextDay(startDate, dayOfWeek, hour, minutes, offset){
//Add seven days
startDate.setDate(startDate.getDate() + 7);
}
startDate.setTime(startDate.getTime() + (offset * 60000));
return startDate;
}