mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 16:29:22 +01:00
Fix add contact tooltip to work inside nextmatch again
This commit is contained in:
parent
f265f74e12
commit
28eaee5707
@ -354,20 +354,21 @@ var et2_url_ro = (function(){ "use strict"; return et2_valueWidget.extend([et2_I
|
|||||||
if(!egw.app('addressbook')) return;
|
if(!egw.app('addressbook')) return;
|
||||||
|
|
||||||
// Bind onmouseenter event on <a> tag in order to add contact plus
|
// Bind onmouseenter event on <a> tag in order to add contact plus
|
||||||
|
// Need to keep span & value so it works inside nextmatch
|
||||||
this.span.on ('mouseenter', jQuery.proxy(function (event) {
|
this.span.on ('mouseenter', jQuery.proxy(function (event) {
|
||||||
event.stopImmediatePropagation();
|
event.stopImmediatePropagation();
|
||||||
if(typeof et2_url_ro.email_cache[this.value] === 'undefined')
|
if(typeof et2_url_ro.email_cache[this.value] === 'undefined')
|
||||||
{
|
{
|
||||||
// Ask server if we know this email
|
// Ask server if we know this email
|
||||||
this.egw().jsonq('EGroupware\\Api\\Etemplate\\Widget\\Url::ajax_contact',
|
this.widget.egw().jsonq('EGroupware\\Api\\Etemplate\\Widget\\Url::ajax_contact',
|
||||||
this.value, this._add_contact_tooltip, this
|
this.value, this.widget._add_contact_tooltip, this
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this._add_contact_tooltip(et2_url_ro.email_cache[this.value]);
|
this.widget._add_contact_tooltip.call(this, et2_url_ro.email_cache[this.value]);
|
||||||
}
|
}
|
||||||
},this));
|
},{widget: this, span: this.span, value: this.value}));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -380,10 +381,17 @@ var et2_url_ro = (function(){ "use strict"; return et2_valueWidget.extend([et2_I
|
|||||||
*/
|
*/
|
||||||
_add_contact_tooltip: function(email_exists)
|
_add_contact_tooltip: function(email_exists)
|
||||||
{
|
{
|
||||||
et2_url_ro.email_cache[this.value] = email_exists;
|
var value = this.value || this.widget.value || null;
|
||||||
|
et2_url_ro.email_cache[value] = email_exists;
|
||||||
|
|
||||||
if(email_exists) return;
|
if(email_exists) return;
|
||||||
|
|
||||||
|
// Close all the others
|
||||||
|
jQuery('.et2_email').each(function() {
|
||||||
|
if(jQuery(this).tooltip('instance')) {
|
||||||
|
jQuery(this).tooltip('close');
|
||||||
|
}
|
||||||
|
});
|
||||||
this.span.tooltip({
|
this.span.tooltip({
|
||||||
items: 'a.et2_email',
|
items: 'a.et2_email',
|
||||||
position: {my:"right top", at:"left top", collision:"flipfit"},
|
position: {my:"right top", at:"left top", collision:"flipfit"},
|
||||||
|
Loading…
Reference in New Issue
Block a user