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