Changed calendar table span option from 4 to 3 days.

This commit is contained in:
Alex Tselegidis 2016-07-24 10:56:55 +02:00
parent 6c064295ca
commit 4b976c86fe
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
.find('select') .find('select')
.empty() .empty()
.append(new Option('1 ' + EALang['day'] , 1)) .append(new Option('1 ' + EALang['day'] , 1))
.append(new Option('4 ' + EALang['days'], 4)); .append(new Option('3 ' + EALang['days'], 3));
var $calendarHeader = $('<div class="calendar-header" />').appendTo('#calendar'); var $calendarHeader = $('<div class="calendar-header" />').appendTo('#calendar');