mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-03 18:36:20 +00:00
d42a0772bb
Avoids having to update the date in every file every year, which we stopped doing. Change-Id: I7bf7aa0937eef911e00772470091753a7b06fd3d
34 lines
905 B
JavaScript
34 lines
905 B
JavaScript
/*!
|
|
* VisualEditor ContentEditable MWLanguageVariantBlockNode class.
|
|
*
|
|
* @copyright 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 );
|