mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-15 19:24:21 +02:00
More fixes forjQuery/jQueryUI update issues
This commit is contained in:
@ -233,16 +233,19 @@ var et2_dialog = et2_widget.extend({
|
||||
* Clean up dialog
|
||||
*/
|
||||
destroy: function() {
|
||||
// Un-dialog the dialog
|
||||
this.div.dialog("destroy");
|
||||
|
||||
if(this.template)
|
||||
if(this.div != null)
|
||||
{
|
||||
this.template.clear();
|
||||
this.template = null;
|
||||
}
|
||||
// Un-dialog the dialog
|
||||
this.div.dialog("destroy");
|
||||
|
||||
this.div = null;
|
||||
if(this.template)
|
||||
{
|
||||
this.template.clear();
|
||||
this.template = null;
|
||||
}
|
||||
|
||||
this.div = null;
|
||||
}
|
||||
|
||||
// Call the inherited constructor
|
||||
this._super.apply(this, arguments);
|
||||
|
Reference in New Issue
Block a user