Added a new setting to be able to start the meal plan on a different weekday (closes #429)

This commit is contained in:
Bernd Bestel
2020-01-25 20:01:40 +01:00
parent d64a1a546c
commit 0ef9b2fdb7
4 changed files with 13 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ if (!Grocy.CalendarFirstDayOfWeek.isEmpty())
{
firstDay = parseInt(Grocy.CalendarFirstDayOfWeek);
}
if (!Grocy.MealPlanFirstDayOfWeek.isEmpty())
{
firstDay = parseInt(Grocy.MealPlanFirstDayOfWeek);
}
var calendar = $("#calendar").fullCalendar({
"themeSystem": "bootstrap4",