mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 02:23:58 +00:00
3ce49146fe
New changes: 7b68782 Update OOjs UI to v0.1.0-pre (3b434d5388) ecb194d Remove border-radius prefixes 993220a Fix invalid use of border shorthand syntax 580473e build: Clean up repo split left overs in Gruntfile Incidental change: * The OOjs UI-provided 'autoAdd' configuration option for tools has been replaced with 'autoAddToCatchall' and 'autoAddToGroup'. Change-Id: Ie7646ae867e5c6ca616c3f9045c79b886e78475c
64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
/*!
|
|
* VisualEditor MediaWiki UserInterface edit mode tool classes.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki UserInterface edit mode tool.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @extends OO.ui.Tool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.MWEditModeTool = function VeUiMWEditModeTool( toolGroup, config ) {
|
|
OO.ui.Tool.call( this, toolGroup, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWEditModeTool, OO.ui.Tool );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWEditModeTool.static.group = 'editMode';
|
|
|
|
ve.ui.MWEditModeTool.static.autoAddToCatchall = false;
|
|
|
|
ve.ui.MWEditModeTool.static.autoAddToGroup = false;
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.MWEditModeTool.prototype.onUpdateState = function () {
|
|
this.setActive( false );
|
|
};
|
|
|
|
/**
|
|
* MediaWiki UserInterface edit mode source tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWEditModeTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.MWEditModeSourceTool = function VeUiMWEditModeSourceTool( toolGroup, config ) {
|
|
ve.ui.MWEditModeTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWEditModeSourceTool, ve.ui.MWEditModeTool );
|
|
ve.ui.MWEditModeSourceTool.static.name = 'editModeSource';
|
|
ve.ui.MWEditModeSourceTool.static.icon = 'source';
|
|
ve.ui.MWEditModeSourceTool.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-mweditmodesource-title' );
|
|
|
|
ve.ui.MWEditModeSourceTool.prototype.onSelect = function () {
|
|
this.setActive( false );
|
|
this.toolbar.getTarget().editSource();
|
|
};
|
|
|
|
ve.ui.toolFactory.register( ve.ui.MWEditModeSourceTool );
|