mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-24 14:58:43 +01:00
Check for options before using it, fixes error when un-loading widget
This commit is contained in:
parent
0c5486c2d3
commit
9098943dd3
@ -73,7 +73,7 @@ var et2_calendar_owner = (function(){ "use strict"; return et2_taglist_email.ext
|
|||||||
|
|
||||||
selectionRenderer: function(item)
|
selectionRenderer: function(item)
|
||||||
{
|
{
|
||||||
if(this.options.allowFreeEntries)
|
if(this && this.options && this.options.allowFreeEntries)
|
||||||
{
|
{
|
||||||
return this._super.apply(this,arguments);
|
return this._super.apply(this,arguments);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user