mediawiki-extensions-Visual.../modules/ve-mw-collab/ve.init.mw.MobileCollabTarget.js
Ed Sanders 901f107bd0 Delete mobile toolbar flexbox code, upstreamed to VE core
Depends-On: If973baa556a557c2fe5cb3aed44f937fc9d2b62e
Change-Id: I775fb24bd16572cfb8472f5260a7552b2fbb9930
2019-09-03 17:30:19 +00:00

104 lines
2.4 KiB
JavaScript

/*!
* VisualEditor MediaWiki Initialization MobileCollabTarget class.
*
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* MediaWiki mobile article target.
*
* @class
* @extends ve.init.mw.Target
*
* @constructor
* @param {mw.Title} title Page sub-title
* @param {string} rebaserUrl Rebaser server URL
* @param {Object} [config] Configuration options
* @cfg {mw.Title} [importTitle] Title to import
*/
ve.init.mw.MobileCollabTarget = function VeInitMwMobileCollabTarget( title, rebaserUrl, config ) {
// Parent constructor
ve.init.mw.MobileCollabTarget.super.call( this, title, rebaserUrl, config );
// Initialization
this.$element.addClass( 've-init-mw-mobileArticleTarget ve-init-mw-mobileCollabTarget ve-init-mobileTarget' );
$( document.body ).removeClass( 'ns-special' );
};
/* Inheritance */
OO.inheritClass( ve.init.mw.MobileCollabTarget, ve.init.mw.CollabTarget );
/* Static Properties */
ve.init.mw.MobileCollabTarget.static.toolbarGroups = [
// History
{
name: 'history',
include: [ 'undo' ]
},
// Style
{
name: 'style',
classes: [ 've-test-toolbar-style' ],
type: 'list',
icon: 'textStyle',
title: OO.ui.deferMsg( 'visualeditor-toolbar-style-tooltip' ),
include: [ { group: 'textStyle' }, 'language', 'clear' ],
forceExpand: [ 'bold', 'italic', 'clear' ],
promote: [ 'bold', 'italic' ],
demote: [ 'strikethrough', 'code', 'underline', 'language', 'clear' ]
},
// Link
{
name: 'link',
include: [ 'link' ]
},
{
name: 'commentAnnotation',
include: [ 'commentAnnotation' ]
},
// Placeholder for reference tools (e.g. Cite and/or Citoid)
{
name: 'reference'
},
{
name: 'insert',
header: OO.ui.deferMsg( 'visualeditor-toolbar-insert' ),
title: OO.ui.deferMsg( 'visualeditor-toolbar-insert' ),
type: 'list',
icon: 'add',
label: '',
include: '*',
exclude: [ 'comment', 'indent', 'outdent', { group: 'format' } ]
},
{
name: 'authorList',
include: [ 'authorList' ]
},
{
name: 'export',
include: [ 'export' ]
}
];
ve.init.mw.MobileCollabTarget.static.actionGroups = [];
/* Methods */
/**
* @inheritdoc
*/
ve.init.mw.MobileCollabTarget.prototype.setSurface = function ( surface ) {
surface.$element.addClass( 'content' );
// Parent method
ve.init.mw.MobileCollabTarget.super.prototype.setSurface.apply( this, arguments );
};
/* Registration */
ve.init.mw.targetFactory.register( ve.init.mw.MobileCollabTarget );