mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
fix/workaround for bug #2658 - Monthview navigation issue with Google Chrome (Linux 5.0.x beta)
see http://code.google.com/p/chromium/issues/detail?id=43973
This commit is contained in:
parent
b44f0c2f41
commit
7d44c81805
@ -1100,7 +1100,7 @@ Calendar.prototype._init = function (firstDayOfWeek, date) {
|
||||
var day1 = (date.getDay() - this.firstDayOfWeek) % 7;
|
||||
if (day1 < 0)
|
||||
day1 += 7;
|
||||
date.setDate(-day1);
|
||||
date.setDate(0-day1);
|
||||
date.setDate(date.getDate() + 1);
|
||||
|
||||
var row = this.tbody.firstChild;
|
||||
|
Loading…
Reference in New Issue
Block a user