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 | 1x 1x | /*! * VisualEditor Standalone Initialization Desktop Target class. * * @copyright See AUTHORS.txt */ /** * Initialization standalone desktop target. * * @class * @extends ve.init.sa.Target * * @constructor * @param {Object} [config] Configuration options * @param {Object} [config.toolbarConfig] Configuration options for the toolbar */ ve.init.sa.DesktopTarget = function VeInitSaDesktopTarget( config ) { // Parent constructor ve.init.sa.DesktopTarget.super.call( this, config ); this.$element.addClass( 've-init-sa-desktopTarget' ); }; /* Inheritance */ OO.inheritClass( ve.init.sa.DesktopTarget, ve.init.sa.Target ); |