Silence some warnings, mostly about attributes

This commit is contained in:
Nathan Gray
2012-07-23 23:54:16 +00:00
parent 0fa5e2ee49
commit fa69637b82
10 changed files with 72 additions and 4 deletions

View File

@@ -297,8 +297,13 @@ var et2_grid = et2_DOMWidget.extend([et2_IDetachedDOM, et2_IAligned], {
readRowNode = function _readRowNode(node, nodeName) {
if (x >= w)
{
this.egw().debug("warn", "Skipped grid cell in row, '" +
nodeName + "'");
if(nodeName != "description")
{
// Only notify it skipping other than description,
// description used to pad
this.egw().debug("warn", "Skipped grid cell in row, '" +
nodeName + "'");
}
return;
}