Add CSS class 'es-ViewBranchNode-firstChild' to all first childs of ViewBranchNode

This commit is contained in:
Inez Korczynski 2011-11-07 22:29:28 +00:00
parent 6f5719e736
commit bcaa5c2945

View file

@ -48,6 +48,9 @@ es.DocumentViewBranchNode.prototype.onAfterPush = function( childModel ) {
this.children.push( childView );
// Update DOM
this.$.append( childView.$ );
if ( this.children.length === 1 ) {
childView.$.addClass('es-ViewBranchNode-firstChild');
}
this.emit( 'afterPush', childView );
this.emit( 'update' );
};