mediawiki-extensions-Visual.../modules/ve-mw/ui/inspectors/ve.ui.MWGalleryInspector.js
James D. Forrester 67f304a414 Update VE core submodule to master (c4ce5ee)
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
2014-08-20 18:42:52 -07:00

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