forked from extern/egroupware
Check to make sure data is there before accessing it, hopefully avoids a js error blocking context menu.
This commit is contained in:
parent
179d121efa
commit
2560320cfe
@ -951,6 +951,10 @@ app.classes.addressbook = AppJS.extend(
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
var content = egw.dataGetUIDdata(_selected[0].id);
|
var content = egw.dataGetUIDdata(_selected[0].id);
|
||||||
|
|
||||||
|
// Selected, but data not found
|
||||||
|
if(!content || typeof content.data === 'undefined') return false;
|
||||||
|
|
||||||
var type = _action.id === 'business'?'one':'two';
|
var type = _action.id === 'business'?'one':'two';
|
||||||
var addrs = [
|
var addrs = [
|
||||||
content.data['adr_'+type+'_street'],
|
content.data['adr_'+type+'_street'],
|
||||||
|
Loading…
Reference in New Issue
Block a user