mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-26 07:15:32 +00:00
0e51180709
Move various bits of code from initialize to setup as required. MWDialog is now useless so use ve.ui.Dialog directly. New changes: 0b2d03f [BREAKING CHANGE] Pass fragments, not surfaces, to windows (reprise) 0101ac4 Update OOjs UI to v0.1.0-pre (ac6848398c) Change-Id: I0fae3e5ff2bd0da5b74c244af226b07b1f5883bd
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWGalleryInspector class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/*global mw */
|
|
|
|
/**
|
|
* MediaWiki gallery inspector.
|
|
*
|
|
* @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 );
|
|
};
|
|
|
|
/* 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.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.inspectorFactory.register( ve.ui.MWGalleryInspector );
|