Commit db6276bc authored by Johannes Bill's avatar Johannes Bill

little bit config refactoring, added weekview vertical

parent 1c0daf67
...@@ -69,10 +69,10 @@ function createWeekViewVertical(dataObj, now) { ...@@ -69,10 +69,10 @@ function createWeekViewVertical(dataObj, now) {
var cls = ''; var cls = '';
if (dayInHolidays(day.date, holidays)) { if (dayInHolidays(day.date, holidays)) {
cls += " weekview-holiday"; cls += " weekviewV-holiday";
} }
if (compareDate(day.date, now) == 0) { if (compareDate(day.date, now) == 0) {
cls += " weekview-today"; cls += " weekviewV-today";
} }
var datString = formatDate(day.date); var datString = formatDate(day.date);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment