Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/resources/src/mediawiki.rcfilters/ui/LiveUpdateButtonWidget.js
Ðазад
/** * Widget for toggling live updates. * * @class mw.rcfilters.ui.LiveUpdateButtonWidget * @ignore * @extends OO.ui.ToggleButtonWidget * * @param {mw.rcfilters.Controller} controller * @param {mw.rcfilters.dm.ChangesListViewModel} changesListModel * @param {Object} [config] Configuration object */ const LiveUpdateButtonWidget = function MwRcfiltersUiLiveUpdateButtonWidget( controller, changesListModel, config ) { config = config || {}; // Parent LiveUpdateButtonWidget.super.call( this, Object.assign( { label: mw.msg( 'rcfilters-liveupdates-button' ) }, config ) ); this.controller = controller; this.model = changesListModel; // Events this.connect( this, { click: 'onClick' } ); this.model.connect( this, { liveUpdateChange: 'onLiveUpdateChange' } ); this.$element.addClass( 'mw-rcfilters-ui-liveUpdateButtonWidget' ); this.setState( false ); }; /* Initialization */ OO.inheritClass( LiveUpdateButtonWidget, OO.ui.ToggleButtonWidget ); /* Methods */ /** * Respond to the button being clicked */ LiveUpdateButtonWidget.prototype.onClick = function () { this.controller.toggleLiveUpdate(); }; /** * Set the button's state and change its appearance * * @param {boolean} enable Whether the 'live update' feature is now on/off */ LiveUpdateButtonWidget.prototype.setState = function ( enable ) { this.setValue( enable ); this.setIcon( enable ? 'stop' : 'play' ); this.setTitle( mw.msg( enable ? 'rcfilters-liveupdates-button-title-on' : 'rcfilters-liveupdates-button-title-off' ) ); }; /** * Respond to the 'live update' feature being turned on/off * * @param {boolean} enable Whether the 'live update' feature is now on/off */ LiveUpdateButtonWidget.prototype.onLiveUpdateChange = function ( enable ) { this.setState( enable ); }; module.exports = LiveUpdateButtonWidget;
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка