Fix missing argument with new DnD controller

pull/48/head
Francis Lachapelle 2014-07-24 09:30:19 -04:00
parent 006727a74b
commit 5de51e8aa1
1 changed files with 2 additions and 2 deletions

View File

@ -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) {