mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 19:09:29 +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
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor Standalone Initialization Target class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Initialization Standalone target.
|
|
*
|
|
* @example
|
|
* new ve.init.sa.Target(
|
|
* $( '<div>' ).appendTo( 'body' ), ve.createDocumentFromHtml( '<p>Hello world.</p>' )
|
|
* );
|
|
*
|
|
* @class
|
|
* @extends ve.init.Target
|
|
*
|
|
* @constructor
|
|
* @param {jQuery} $container Container to render target into
|
|
* @param {ve.dm.Document} doc Document model
|
|
*/
|
|
ve.init.sa.Target = function VeInitSaTarget( $container, doc ) {
|
|
// Parent constructor
|
|
ve.init.Target.call( this, $container );
|
|
|
|
// Properties
|
|
this.surface = new ve.ui.Surface( doc );
|
|
this.toolbar = new ve.ui.SurfaceToolbar( this.surface, { 'shadow': true } );
|
|
|
|
// Initialization
|
|
this.toolbar.$.addClass( 've-init-sa-target-toolbar' );
|
|
this.toolbar.addTools( this.constructor.static.toolbarTools );
|
|
this.toolbar.enableFloatable();
|
|
|
|
this.$.append( this.toolbar.$, this.surface.$ );
|
|
|
|
this.toolbar.initialize();
|
|
this.surface.addCommands( this.constructor.static.surfaceCommands );
|
|
this.surface.initialize();
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.init.sa.Target, ve.init.Target );
|