mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
Fix issue contact plus button sometimes gets stuck
This commit is contained in:
parent
2bcd6b16d8
commit
d42f20cf38
@ -436,6 +436,11 @@ export class et2_description extends expose(class et2_description extends et2_ba
|
|||||||
})
|
})
|
||||||
.tooltip("open");
|
.tooltip("open");
|
||||||
}, {widget: this, span: this.span}));
|
}, {widget: this, span: this.span}));
|
||||||
|
this.span.on('mouseout', function(){
|
||||||
|
if(jQuery(this).tooltip('instance')) {
|
||||||
|
jQuery(this).tooltip('close');
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}){};
|
}){};
|
||||||
et2_register_widget(et2_description, ["description", "label"]);
|
et2_register_widget(et2_description, ["description", "label"]);
|
||||||
|
@ -452,6 +452,11 @@ export class et2_url_ro extends et2_valueWidget
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
},{widget: this, span: this.span, value: this.value}));
|
},{widget: this, span: this.span, value: this.value}));
|
||||||
|
this.span.on('mouseout', function(){
|
||||||
|
if(jQuery(this).tooltip('instance')) {
|
||||||
|
jQuery(this).tooltip('close');
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user