mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
026af0d6c0
Can't see why we'd need to style toolbar groups differently. Change-Id: I0646b8cf37ab19e34a8ed2eb8558773365403610
42 lines
916 B
JavaScript
42 lines
916 B
JavaScript
/*!
|
|
* VisualEditor Initialization Target class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Generic Initialization target.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @mixins ve.EventEmitter
|
|
*
|
|
* @constructor
|
|
* @param {jQuery} $container Conainter to render target into
|
|
*/
|
|
ve.init.Target = function VeInitTarget( $container ) {
|
|
// Mixin constructors
|
|
ve.EventEmitter.call( this );
|
|
|
|
// Properties
|
|
this.$ = $container;
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.mixinClass( ve.init.Target, ve.EventEmitter );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.init.Target.static.toolbarTools = [
|
|
{ 'items': ['undo', 'redo'] },
|
|
{ 'items': ['format'] },
|
|
{ 'items': ['bold', 'italic', 'link', 'clear'] },
|
|
{ 'items': ['number', 'bullet', 'outdent', 'indent'] }
|
|
];
|
|
|
|
ve.init.Target.static.surfaceCommands = [
|
|
'bold', 'italic', 'link', 'undo', 'redo', 'indent', 'outdent'
|
|
];
|