mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-01 09:26:37 +00:00
d42a0772bb
Avoids having to update the date in every file every year, which we stopped doing. Change-Id: I7bf7aa0937eef911e00772470091753a7b06fd3d
30 lines
676 B
JavaScript
30 lines
676 B
JavaScript
/*!
|
|
* VisualEditor ContentEditable MWAnnotationNode class.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* ContentEditable MW node for annotation tags.
|
|
*
|
|
* @class
|
|
* @extends ve.ce.AlienInlineNode
|
|
* @constructor
|
|
* @param {ve.dm.MWAnnotationNode} model
|
|
* @param {Object} [config]
|
|
*/
|
|
ve.ce.MWAnnotationNode = function VeCeMWAnnotationNode() {
|
|
// Parent constructor
|
|
ve.ce.MWAnnotationNode.super.apply( this, arguments );
|
|
|
|
// DOM changes
|
|
this.$element
|
|
.addClass( 've-ce-mwAnnotationNode' )
|
|
.text( this.model.getWikitextTag() );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ce.MWAnnotationNode, ve.ce.AlienInlineNode );
|