mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Update parent when removing events out of normal work times
This commit is contained in:
parent
c8401fec2a
commit
d5aa61671f
@ -195,6 +195,14 @@ var et2_calendar_event = (function(){ "use strict"; return et2_valueWidget.exten
|
||||
// Check for changing days in the grid view
|
||||
if(!this._sameday_check(value))
|
||||
{
|
||||
// May need to update parent to remove out-of-view events
|
||||
var parent = this._parent;
|
||||
this._parent.removeChild(this);
|
||||
if(event === null && parent && parent._out_of_view)
|
||||
{
|
||||
parent._out_of_view();
|
||||
}
|
||||
|
||||
// This should now cease to exist, as new events have been created
|
||||
this.free();
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user