mediawiki-extensions-Visual.../modules/ve-mw/ui/dialogs/ve.ui.MWMobileSaveDialog.js
James D. Forrester ada58df361 build: Bump file copyright notices for 2016
Change-Id: I3c618c196e504a80ca297a4132a17f1977a24fb7
2016-01-03 14:57:25 -08:00

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 );