mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
ada58df361
Change-Id: I3c618c196e504a80ca297a4132a17f1977a24fb7
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWMobileSaveDialog class.
|
|
*
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Dialog for saving MediaWiki pages in mobile.
|
|
*
|
|
* Note that most methods are not safe to call before the dialog has initialized, except where
|
|
* noted otherwise.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWSaveDialog
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.MWMobileSaveDialog = function VeUiMwMobileSaveDialog( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWMobileSaveDialog.super.call( this, config );
|
|
|
|
// Initialization
|
|
this.$element.addClass( 've-ui-mwMobileSaveDialog' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWMobileSaveDialog, ve.ui.MWSaveDialog );
|
|
|
|
/* Methods */
|
|
ve.ui.MWMobileSaveDialog.prototype.getSetupProcess = function ( data ) {
|
|
return ve.ui.MWMobileSaveDialog.super.prototype.getSetupProcess.call( this, data )
|
|
.next( function () {
|
|
// Update save button label
|
|
this.actions.forEach( { actions: 'save' }, function ( action ) {
|
|
action.setLabel(
|
|
ve.msg(
|
|
// Possible messages:
|
|
// visualeditor-savedialog-label-restore-short, visualeditor-savedialog-label-save-short
|
|
'visualeditor-savedialog-label-' + ( this.restoring ? 'restore' : 'save' ) + '-short'
|
|
)
|
|
);
|
|
} );
|
|
}, this );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWMobileSaveDialog );
|