mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
67f304a414
New changes: c4ce5ee Update OOjs UI to v0.1.0-pre (466a8762ac) Update changes: * Remove manager arugment from window constructors * Use this.$content instead of this.frame.$content * Use this.getDir() instead of this.frame.getDir() * this.loading is now a promise, not a boolean Change-Id: Ia83449a60078dd24ea4f976221c0859e5a121279
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWGalleryInspector class.
|
|
*
|
|
* @copyright 2011-2014 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( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWExtensionInspector.call( this, config );
|
|
|
|
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.nodeModel = 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 );
|