Make sure the this object is avaliable before addressing it.

-Fix error in calender views which was happening after dnd
This commit is contained in:
Hadi Nategh 2014-10-21 08:58:33 +00:00
parent 1df5500d28
commit 23c0285825

View File

@ -407,7 +407,7 @@ egw.extend('json', egw.MODULE_WND_LOCAL, function(_app, _wnd) {
egw_topWindow().location.href = res.data.url;
}
// json request was originating from a different window --> redirect that one
else if(this.DOMContainer && this.DOMContainer.ownerDocument.defaultView != window)
else if(this && this.DOMContainer && this.DOMContainer.ownerDocument.defaultView != window)
{
this.DOMContainer.ownerDocument.location.href = res.data.url;
}