mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
bbed4307d7
Bug: T205231 Change-Id: I84a6f2f7a842ab44e1f7103c0f288deda0451e79
34 lines
945 B
JavaScript
34 lines
945 B
JavaScript
/*!
|
|
* VisualEditor ContentEditable MWLanguageVariantBlockNode class.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* ContentEditable MediaWiki language variant block node.
|
|
*
|
|
* @class
|
|
* @extends ve.ce.MWLanguageVariantNode
|
|
*
|
|
* @constructor
|
|
* @param {ve.dm.MWLanguageVariantBlockNode} model Model to observe
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ce.MWLanguageVariantBlockNode = function VeCeMWLanguageVariantBlockNode() {
|
|
// Parent constructor
|
|
ve.ce.MWLanguageVariantBlockNode.super.apply( this, arguments );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ce.MWLanguageVariantBlockNode, ve.ce.MWLanguageVariantNode );
|
|
|
|
ve.ce.MWLanguageVariantBlockNode.static.name = 'mwLanguageVariantBlock';
|
|
|
|
ve.ce.MWLanguageVariantBlockNode.static.tagName = 'div';
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.nodeFactory.register( ve.ce.MWLanguageVariantBlockNode );
|