Merge "Set inspector container height and width to 0 on close."

This commit is contained in:
Trevor Parscal 2012-08-23 19:04:33 +00:00 committed by Gerrit Code Review
commit 5ee75fbbfd

View file

@ -295,7 +295,9 @@ ve.ui.Context.prototype.closeInspector = function ( accept ) {
this.inspector = null; this.inspector = null;
} }
this.$inspectors.css( { this.$inspectors.css( {
'visibility': 'hidden' 'visibility': 'hidden',
'width': 0,
'height': 0
} ); } );
}; };