mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-11 05:56:11 +00:00
a226716d70
Objective: * Make it possible to make a toolbar without a surface Changes: *.php * Links to new file ve.ui.Toolbar.js, ve.ui.SurfaceToolbar.js * Split toolbar into generic and surface specific classes *.js * Update symbol names Change-Id: Ice063a2fb67b5ce5155cdc96a0d47af49eee48cb
39 lines
970 B
JavaScript
39 lines
970 B
JavaScript
/*!
|
|
* VisualEditor UserInterface BulletListButtonTool class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* UserInterface bullet button tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.ListButtonTool
|
|
* @constructor
|
|
* @param {ve.ui.SurfaceToolbar} toolbar
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.BulletButtonTool = function VeUiBulletButtonTool( toolbar, config ) {
|
|
// Parent constructor
|
|
ve.ui.ListButtonTool.call( this, toolbar, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.BulletButtonTool, ve.ui.ListButtonTool );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.BulletButtonTool.static.name = 'bullet';
|
|
|
|
ve.ui.BulletButtonTool.static.icon = 'bullet-list';
|
|
|
|
ve.ui.BulletButtonTool.static.titleMessage = 'visualeditor-listbutton-bullet-tooltip';
|
|
|
|
ve.ui.BulletButtonTool.static.style = 'bullet';
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.toolFactory.register( 'bullet', ve.ui.BulletButtonTool );
|