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 | 1x 112x 112x 1x 1x 1x | /*! * VisualEditor UserInterface ChangeDescriptionsSelectWidget class. * * @copyright See AUTHORS.txt * @license The MIT License (MIT); see LICENSE.txt */ /** * Creates a ve.ui.ChangeDescriptionsSelectWidget object. * * @class * @extends OO.ui.SelectWidget * * @constructor * @param {Object} config Configuration options */ ve.ui.ChangeDescriptionsSelectWidget = function VeUiChangeDescriptionsSelectWidget( config ) { // Parent constructor ve.ui.ChangeDescriptionsSelectWidget.super.call( this, config ); // DOM this.$element.addClass( 've-ui-changeDescriptionsSelectWidget' ); }; /* Inheritance */ OO.inheritClass( ve.ui.ChangeDescriptionsSelectWidget, OO.ui.SelectWidget ); /* Methods */ ve.ui.ChangeDescriptionsSelectWidget.prototype.selectItem = function () {}; ve.ui.ChangeDescriptionsSelectWidget.prototype.pressItem = function () {}; |