mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
eca0a08ad9
Update VE core submodule to master (84ced37) and update calling code for changes in OOUI. Depends on Ic967b88d55daf48d365487e17f76488b3f02c60f and Ib599b9bd5028e2df084fcc3da657aeb7f1569d2a New changes: 94f03c3 Undefined variables first in selectNodes 62b5648 Localisation updates from https://translatewiki.net. 10c5a18 Don't descend into handlesOwnChildren nodes in selectNodes 4ed2432 Update jquery.client to MW's master (45192156d7) d7e24b8 Localisation updates from https://translatewiki.net. babb9da Localisation updates from https://translatewiki.net. 4639d18 Localisation updates from https://translatewiki.net. a561537 Localisation updates from https://translatewiki.net. 8f7053a Localisation updates from https://translatewiki.net. 7112cc2 Update OOjs UI to v0.1.0-pre (a290673bbd) Change-Id: Ie7d58472619509782f23a7dedc1ec27c3dcc7543
54 lines
1.4 KiB
JavaScript
54 lines
1.4 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 {ve.ui.WindowSet} windowSet Window set this inspector is part of
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWGalleryInspector = function VeUiMWGalleryInspector( windowSet, config ) {
|
|
// Parent constructor
|
|
ve.ui.MWExtensionInspector.call( this, windowSet, 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.nodeView = ve.ce.MWGalleryNode;
|
|
|
|
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 );
|