Merge "ce: Don't set backgroundColor transparent for every node in debug mode"

This commit is contained in:
jenkins-bot 2013-07-27 04:06:52 +00:00 committed by Gerrit Code Review
commit 4bdc621e62

View file

@ -183,7 +183,7 @@ ve.ce.ContentBranchNode.prototype.renderContents = function () {
if ( ve.debug ) {
this.$.css( 'backgroundColor', '#F6F6F6' );
setTimeout( ve.bind( function () {
this.$.css( 'backgroundColor', 'transparent' );
this.$.css( 'backgroundColor', '' );
}, this ), 350 );
}
};