mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
fix sometimes not working click handler in buttons
eg. admin.index or admin.acl
This commit is contained in:
parent
b69c5e7cbf
commit
6f2a93ef0a
@ -215,13 +215,14 @@ const Et2WidgetMixin = (superClass) =>
|
||||
|
||||
this.disabled = false;
|
||||
this._handleClick = this._handleClick.bind(this);
|
||||
this.addEventListener("click", this._handleClick);
|
||||
}
|
||||
|
||||
connectedCallback()
|
||||
{
|
||||
super.connectedCallback();
|
||||
|
||||
this.addEventListener("click", this._handleClick);
|
||||
|
||||
if(this.statustext)
|
||||
{
|
||||
this.egw().tooltipBind(this, this.statustext);
|
||||
|
Loading…
Reference in New Issue
Block a user