Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/WikiEditor/modules/insertlink/LinkTypeField.js
Ðазад
/** * @class * @extends OO.ui.FieldLayout * @mixes OO.EventEmitter * @constructor */ function LinkTypeField() { // Mixin constructor OO.EventEmitter.call( this ); this.radioInt = new OO.ui.RadioOptionWidget( { label: mw.msg( 'wikieditor-toolbar-tool-link-int' ) } ); this.radioExt = new OO.ui.RadioOptionWidget( { label: mw.msg( 'wikieditor-toolbar-tool-link-ext' ) } ); var radioSelect = new OO.ui.RadioSelectWidget( { items: [ this.radioInt, this.radioExt ] } ); radioSelect.connect( this, { choose: this.onRadioChoose } ); var config = { align: 'top', classes: [ 'mw-wikiEditor-InsertLink-LinkTypeField' ] }; LinkTypeField.super.call( this, radioSelect, config ); } OO.inheritClass( LinkTypeField, OO.ui.FieldLayout ); OO.mixinClass( LinkTypeField, OO.EventEmitter ); LinkTypeField.static.LINK_MODE_INTERNAL = 'internal'; LinkTypeField.static.LINK_MODE_EXTERNAL = 'external'; /** * Select the 'external link' radio. * * @param {boolean} isExternal */ LinkTypeField.prototype.setIsExternal = function ( isExternal ) { this.getField().selectItem( isExternal ? this.radioExt : this.radioInt ); }; /** * Is the 'internal link' radio currently selected? * * @return {boolean} */ LinkTypeField.prototype.isInternal = function () { return this.radioInt.isSelected(); }; /** * Emit a 'change' event when the radio selection changes. * * @private */ LinkTypeField.prototype.onRadioChoose = function () { this.emit( 'change', this.radioExt.isSelected() ); }; module.exports = LinkTypeField;
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка