mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-12 17:18:41 +00:00
f5c6f61163
Change-Id: I846d36c15e1b1f810d2ef7fd422f8412790bcb0f
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWGalleryInspector class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Inspector for editing MediaWiki galleries.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWExtensionInspector
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWGalleryInspector = function VeUiMWGalleryInspector() {
|
|
// Parent constructor
|
|
ve.ui.MWGalleryInspector.super.apply( this, arguments );
|
|
|
|
this.$element.addClass( 've-ui-mwGalleryInspector' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWGalleryInspector, ve.ui.MWExtensionInspector );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWGalleryInspector.static.name = 'gallery';
|
|
|
|
ve.ui.MWGalleryInspector.static.icon = 'gallery';
|
|
|
|
ve.ui.MWGalleryInspector.static.size = 'large';
|
|
|
|
ve.ui.MWGalleryInspector.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-mwgalleryinspector-title' );
|
|
|
|
ve.ui.MWGalleryInspector.static.modelClasses = [ ve.dm.MWGalleryNode ];
|
|
|
|
/* Methods */
|
|
|
|
/** */
|
|
ve.ui.MWGalleryInspector.prototype.getInputPlaceholder = function () {
|
|
// 'File:' is always in content language
|
|
return mw.config.get( 'wgFormattedNamespaces' )[ '6' ] + ':' +
|
|
ve.msg( 'visualeditor-mwgalleryinspector-placeholder' );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWGalleryInspector );
|