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 | 1x 1x 1x | /*!
* VisualEditor Context Menu widget class.
*
* @copyright See AUTHORS.txt
*/
/**
* Menu of items, each an inspectable attribute of the current context.
*
* Use with ve.ui.ContextOptionWidget.
*
* @class
* @extends OO.ui.SelectWidget
*
* @constructor
* @param {Object} [config] Configuration options
*/
ve.ui.ContextSelectWidget = function VeUiContextSelectWidget( config = {} ) {
// Parent constructor
ve.ui.ContextSelectWidget.super.call( this, config );
this.connect( this, { choose: 'onChooseItem' } );
// Initialization
this.$element.addClass( 've-ui-contextSelectWidget' );
};
/* Setup */
OO.inheritClass( ve.ui.ContextSelectWidget, OO.ui.SelectWidget );
/* Methods */
/**
* Handle choose item events.
*/
ve.ui.ContextSelectWidget.prototype.onChooseItem = function () {
// Auto-deselect
this.selectItem( null );
};
|