You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I needed the same functionality so I came up with this:
vartime=date.toTimeString().split(' ')[0];// get hour and minute (there are better ways to do this)varsched=later.parse.recur().on(time).time();vardayOfWeek=later.dayOfWeek.val(date);// NOTE this line might mess up your `date` instancereturnlater.schedule(sched.on(0).dayOfWeekCount().on(dayOfWeek).dayOfWeek());
Is it possible to generate a recurrence like 'every last Friday of the month'?
The text was updated successfully, but these errors were encountered: