Remove added indentation by accident from commit 47388

This commit is contained in:
Hadi Nategh 2014-06-25 16:47:07 +00:00
parent 9e67848243
commit 6d2582c22e

View File

@ -500,13 +500,13 @@ var et2_tree = et2_inputWidget.extend(
// Update action
// since the action ID has to = this.id, getObjectById() won't work
var treeObj = egw_getAppObjectManager().getObjectById(this.id);
for(var i=0; i < treeObj.children.length; i++)
for(var i=0; i < treeObj.children.length; i++)
{
if(treeObj.children[i].id == _id)
{
if(treeObj.children[i].id == _id)
{
treeObj.children.splice(i,1);
}
treeObj.children.splice(i,1);
}
}
},
/**