2013-08-15 19:33:31 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface SubscriptButtonTool class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserInterface subscript button tool.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.AnnotationButtonTool
|
|
|
|
* @constructor
|
|
|
|
* @param {ve.ui.SurfaceToolbar} toolbar
|
|
|
|
* @param {Object} [config] Config options
|
|
|
|
*/
|
|
|
|
ve.ui.SubscriptButtonTool = function VeUiSubscriptButtonTool( toolbar, config ) {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.AnnotationButtonTool.call( this, toolbar, config );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.inheritClass( ve.ui.SubscriptButtonTool, ve.ui.AnnotationButtonTool );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
2013-08-09 18:29:09 +00:00
|
|
|
ve.ui.SubscriptButtonTool.static.name = 'textStyle/subscript';
|
2013-08-15 19:33:31 +00:00
|
|
|
|
|
|
|
ve.ui.SubscriptButtonTool.static.icon = 'subscript';
|
|
|
|
|
|
|
|
ve.ui.SubscriptButtonTool.static.titleMessage = 'visualeditor-annotationbutton-subscript-tooltip';
|
|
|
|
|
2013-08-20 20:34:50 +00:00
|
|
|
ve.ui.SubscriptButtonTool.static.annotation = { 'name': 'textStyle/subscript' };
|
2013-08-15 19:33:31 +00:00
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
2013-08-09 18:29:09 +00:00
|
|
|
ve.ui.toolFactory.register( 'textStyle/subscript', ve.ui.SubscriptButtonTool );
|
2013-08-15 19:33:31 +00:00
|
|
|
|
2013-08-20 20:34:50 +00:00
|
|
|
ve.ui.commandRegistry.register(
|
|
|
|
'textStyle/subscript', 'annotation', 'toggle', 'textStyle/subscript'
|
|
|
|
);
|