mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
Merge "Set inspector container height and width to 0 on close."
This commit is contained in:
commit
5ee75fbbfd
|
@ -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
|
||||||
} );
|
} );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue