mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
Make sure link_entry & file_upload are still present before trying to destroy them.
Fixes hidden error when calling etemplate2.clear() with read-only link widgets.
This commit is contained in:
parent
ed9204103c
commit
03d3f7924f
@ -96,10 +96,16 @@ var et2_link_to = et2_inputWidget.extend(
|
||||
this.link_button = null;
|
||||
this.status_span = null;
|
||||
|
||||
if(this.link_entry)
|
||||
{
|
||||
this.link_entry.destroy();
|
||||
this.link_entry = null;
|
||||
}
|
||||
if(this.file_upload)
|
||||
{
|
||||
this.file_upload.destroy();
|
||||
this.file_upload = null;
|
||||
}
|
||||
this.div = null;
|
||||
|
||||
this._super.apply(this, arguments);
|
||||
|
Loading…
Reference in New Issue
Block a user