Skip to content
This repository was archived by the owner on Mar 30, 2024. It is now read-only.

Commit 9f35716

Browse files
committed
Fix #11
1 parent f3b280b commit 9f35716

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
latest
2-
0.5.3
2+
0.5.4
33
0.5
44
0

php/load/graphs/MonthView.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ function displayView(combiData, plainData, singleDayData, element){
1919

2020
function newEvent(name, category, begin, end){
2121
return new DayPilot.Event({
22-
start: new DayPilot.Date(new Date(begin * 1000)),
23-
end: new DayPilot.Date(new Date(end * 1000)),
22+
start: new DayPilot.Date(new Date(begin * 1000), true),
23+
end: new DayPilot.Date(new Date(end * 1000), true),
2424
id: DayPilot.guid(),
2525
text: name + (multipleCats ? (" – " + category) : ""),
2626
backColor: multipleCats ? colorsCategories[category] : colorsNames[name]
@@ -30,7 +30,7 @@ function displayView(combiData, plainData, singleDayData, element){
3030
function setup() {
3131
element.html('<div class="m-2"><div style="display: flex;"><div style="margin-right: 10px;"><div id="nav"></div></div><div style="flex-grow: 1;"><div id="dp"></div></div></div></div>');
3232

33-
var startDate = new DayPilot.Date(new Date(plainData[0].begin * 1000));
33+
var startDate = new DayPilot.Date(new Date(plainData[0].begin * 1000), true);
3434

3535
var nav = new DayPilot.Navigator("nav");
3636
nav.showMonths = 3;

php/load/graphs/WeekView.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ function displayView(combiData, plainData, singleDayData, element){
1919

2020
function newEvent(name, category, begin, end){
2121
return new DayPilot.Event({
22-
start: new DayPilot.Date(new Date(begin * 1000)),
23-
end: new DayPilot.Date(new Date(end * 1000)),
22+
start: new DayPilot.Date(new Date(begin * 1000), true),
23+
end: new DayPilot.Date(new Date(end * 1000), true),
2424
id: DayPilot.guid(),
2525
text: name + (multipleCats ? (" – " + category) : ""),
2626
backColor: multipleCats ? colorsCategories[category] : colorsNames[name]
@@ -30,7 +30,7 @@ function displayView(combiData, plainData, singleDayData, element){
3030
function setup() {
3131
element.html('<div class="m-2"><div style="display: flex;"><div style="margin-right: 10px;"><div id="nav"></div></div><div style="flex-grow: 1;"><div id="dp"></div></div></div></div>');
3232

33-
var startDate = new DayPilot.Date(new Date(plainData[0].begin * 1000));
33+
var startDate = new DayPilot.Date(new Date(plainData[0].begin * 1000), true);
3434

3535
var nav = new DayPilot.Navigator("nav");
3636
nav.showMonths = 3;

0 commit comments

Comments
 (0)