Implement valign attribute for nextmatch rows

This commit is contained in:
Nathan Gray 2012-06-11 15:43:09 +00:00
parent c3e0a2ab15
commit 7517b392f5

View File

@ -480,6 +480,11 @@ var et2_nextmatch_rowProvider = Class.extend({
}
_tr.setAttribute("class", classes);
}
if(_data['valign'])
{
var align = _mgrs["content"].expandName(_data["valign"]);
_tr.setAttribute("valign", align);
}
}
});