mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
Calendar: update sidemenu calendar to match 2cb826e26
This commit is contained in:
parent
dcc6d1eb83
commit
b0fc18ad93
@ -59,7 +59,7 @@ export class SidemenuDate extends Et2Date
|
||||
super.disconnectedCallback();
|
||||
|
||||
this.removeEventListener("change", this._handleChange);
|
||||
if(this._instance.daysContainer !== undefined)
|
||||
if(this._instance && this._instance.daysContainer !== undefined)
|
||||
{
|
||||
this._instance.weekNumbers.removeEventListener("mouseover", this._handleDayHover);
|
||||
this._instance.weekNumbers.removeEventListener("mouseout", this._clearHover);
|
||||
@ -100,6 +100,7 @@ export class SidemenuDate extends Et2Date
|
||||
|
||||
options.onMonthChange = this._handleHeaderChange;
|
||||
options.onYearChange = this._handleHeaderChange;
|
||||
options.wrap = false;
|
||||
|
||||
return options
|
||||
}
|
||||
@ -116,6 +117,14 @@ export class SidemenuDate extends Et2Date
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Override from super due to customisation
|
||||
* @returns {any}
|
||||
*/
|
||||
findInputField() : HTMLInputElement
|
||||
{
|
||||
return this._valueNode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handler for change events. Re-bound to be able to cancel month changes, since it's an input and emits them
|
||||
|
Loading…
Reference in New Issue
Block a user