mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
fixed error if this._widgetSurrondings is not defined, no idea why
This commit is contained in:
parent
4bd8d43318
commit
cabb1e8b8c
@ -536,7 +536,7 @@ var et2_surroundingsMgr = Class.extend(
|
||||
},
|
||||
|
||||
removeDOMNode: function(_node) {
|
||||
for (var i = 0; i < this._widgetSurroundings.length; i++)
|
||||
for (var i = 0; this._widgetSurroundings && i < this._widgetSurroundings.length; i++)
|
||||
{
|
||||
if (this._widgetSurroundings[i] == _node)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user