Calendar: print gridlines to 15-minute intervals

This commit is contained in:
Francis Lachapelle
2013-07-11 13:50:44 -04:00
parent b8e2255a07
commit 33fd60efb3
3 changed files with 16 additions and 1 deletions

View File

@@ -1007,6 +1007,10 @@ SOGoEventDragController.prototype = {
onDragStart: function SEDC_onDragStart(event) {
var target = getTarget(event);
if (eventIsLeftClick(event) && (target.nodeType == 1)) {
if (target.hasClassName("minutes15") ||
target.hasClassName("minutes30") ||
target.hasClassName("minutes45"))
target = target.parentNode;
if ((!this.eventCells
&& (target.hasClassName("clickableHourCell")
|| target.hasClassName("day"))