Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | 1x 6x 1x 1x | /*! * VisualEditor UserInterface DesktopInspectorWindowManager class. * * @copyright See AUTHORS.txt */ /** * Window manager for desktop inspectors. * * @class * @extends ve.ui.SurfaceWindowManager * * @constructor * @param {ve.ui.Surface} surface Surface this belongs to * @param {Object} [config] Configuration options * @param {ve.ui.Overlay} [config.overlay] Overlay to use for menus */ ve.ui.DesktopInspectorWindowManager = function VeUiDesktopInspectorWindowManager( surface, config ) { // Parent constructor ve.ui.DesktopInspectorWindowManager.super.call( this, surface, config ); }; /* Inheritance */ OO.inheritClass( ve.ui.DesktopInspectorWindowManager, ve.ui.SurfaceWindowManager ); /* Static Properties */ ve.ui.DesktopInspectorWindowManager.static.sizes = { small: { width: 200, maxHeight: '100%' }, medium: { width: 300, maxHeight: '100%' }, large: { width: 400, maxHeight: '100%' }, full: { // These can be non-numeric because they are never used in calculations width: '100%', height: '100%' } }; |