From 5de51e8aa1facd6ddaf1162f31f9e42ca810d125 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 24 Jul 2014 09:30:19 -0400 Subject: [PATCH] Fix missing argument with new DnD controller --- UI/WebServerResources/SchedulerUIDnD.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/WebServerResources/SchedulerUIDnD.js b/UI/WebServerResources/SchedulerUIDnD.js index 5bbadcb11..e8dbcfa9d 100644 --- a/UI/WebServerResources/SchedulerUIDnD.js +++ b/UI/WebServerResources/SchedulerUIDnD.js @@ -988,7 +988,7 @@ SOGoEventDragLeftPanelController.prototype = { this.updateLeftPanelVisual.stop(); }, - updateFromPointerHandler: function SEDLPC_updateFromPointerHandler() { + updateFromPointerHandler: function SEDLPC_updateFromPointerHandler(event) { // Highlight the calendar hover $$('#calendarList li').each(function(e) { e.removeClassName('genericHoverClass'); @@ -1467,7 +1467,7 @@ SOGoEventDragController.prototype = { this.ghostController.hideGhosts(); this.leftPanelController.startEvent(); } - this.leftPanelController.updateFromPointerHandler(); + this.leftPanelController.updateFromPointerHandler(event); } else { if (this.ghostController.ghosts == null) {